From 904c4707cd33170099325849e9b9f67c0f4ad179 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 15 May 2023 18:59:23 +0200 Subject: Woops, little fix (this is still version 0.2) --- sdep.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sdep.c') 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) static int is_space(char c) { - return c == ' ' || c == '\t'; + return c == ' ' || c == '\f' || c == '\n' || + c == '\r' || c == '\t' || c == '\v; } static void -- cgit v1.3