From: Michael Stapelberg Date: Wed, 8 Mar 2017 18:24:09 +0000 (+0100) Subject: remove useless checks (we use char, not unsigned char) X-Git-Tag: 2.12~24^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=eee4ace092c21a82230c21afcff4d17a3f497b52;p=i3%2Fi3status remove useless checks (we use char, not unsigned char) fixes compilation warnings --- diff --git a/src/output.c b/src/output.c index 1c8c415..663700e 100644 --- a/src/output.c +++ b/src/output.c @@ -111,12 +111,11 @@ void maybe_escape_markup(char *text, char **buffer) { default: if ((0x1 <= *text && *text <= 0x8) || (0xb <= *text && *text <= 0xc) || - (0xe <= *text && *text <= 0x1f) || - (0x7f <= *text && *text <= 0x84) || - (0x86 <= *text && *text <= 0x9f)) + (0xe <= *text && *text <= 0x1f)) { *buffer += sprintf(*buffer, "&#x%x;", *text); - else + } else { *(*buffer)++ = *text; + } break; } }