sdep

A simple "date+event" line parser
git clone https://git.tronto.net/sdep
Download | Log | Files | Refs | README | LICENSE

commit 904c4707cd33170099325849e9b9f67c0f4ad179
parent dd30c99c346b0eced22843dcc139f0c4330bcba6
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Mon, 15 May 2023 18:59:23 +0200

Woops, little fix (this is still version 0.2)

Diffstat:
Mreleases/sdep-0.2.tar.gz | 0
Msdep.c | 3++-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/releases/sdep-0.2.tar.gz b/releases/sdep-0.2.tar.gz Binary files differ. diff --git a/sdep.c b/sdep.c @@ -166,7 +166,8 @@ format_line(Event ev, Options op, char *out) static int is_space(char c) { - return c == ' ' || c == '\t'; + return c == ' ' || c == '\f' || c == '\n' || + c == '\r' || c == '\t' || c == '\v; } static void