aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2023-05-15 18:59:23 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2023-05-15 18:59:23 +0200
commit904c4707cd33170099325849e9b9f67c0f4ad179 (patch)
treec39366903feaba605f9141f04208487aac394ddb
parentdd30c99c346b0eced22843dcc139f0c4330bcba6 (diff)
downloadsdep-904c4707cd33170099325849e9b9f67c0f4ad179.tar.gz
sdep-904c4707cd33170099325849e9b9f67c0f4ad179.zip
Woops, little fix (this is still version 0.2)
Diffstat (limited to '')
-rw-r--r--releases/sdep-0.2.tar.gzbin5452 -> 5640 bytes
-rw-r--r--sdep.c3
2 files changed, 2 insertions, 1 deletions
diff --git a/releases/sdep-0.2.tar.gz b/releases/sdep-0.2.tar.gz
index 7b1b874..2a55bb3 100644
--- 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
index 629387b..05015ee 100644
--- a/sdep.c
+++ b/sdep.c
@@ -166,7 +166,8 @@ format_line(Event ev, Options op, char *out)
166static int 166static int
167is_space(char c) 167is_space(char c)
168{ 168{
169 return c == ' ' || c == '\t'; 169 return c == ' ' || c == '\f' || c == '\n' ||
170 c == '\r' || c == '\t' || c == '\v;
170} 171}
171 172
172static void 173static void

Generated with cgit - Back to sebastiano.tronto.net