aboutsummaryrefslogtreecommitdiff
path: root/sdep.c
diff options
context:
space:
mode:
Diffstat (limited to 'sdep.c')
-rw-r--r--sdep.c3
1 files changed, 2 insertions, 1 deletions
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