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) --- releases/sdep-0.2.tar.gz | Bin 5452 -> 5640 bytes sdep.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 index 7b1b874..2a55bb3 100644 Binary files a/releases/sdep-0.2.tar.gz and b/releases/sdep-0.2.tar.gz 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) 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