From ba9f5f8ef0ac7a1c6bb6dbfee63006a44902ca6d Mon Sep 17 00:00:00 2001 From: brabo Date: Sun, 2 Jun 2019 14:37:40 +0200 Subject: gtk/fetch.c & monkey/filetype.c: ascii_is_space already checks for newline. --- frontends/monkey/filetype.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'frontends/monkey') diff --git a/frontends/monkey/filetype.c b/frontends/monkey/filetype.c index af93ef607..37853a63d 100644 --- a/frontends/monkey/filetype.c +++ b/frontends/monkey/filetype.c @@ -112,7 +112,7 @@ void monkey_fetch_filetype_init(const char *mimefile) /* search for the first whitespace char or NUL or * NL */ - while (*ptr && (!ascii_is_space(*ptr)) && *ptr != '\n') + while (*ptr && (!ascii_is_space(*ptr))) ptr++; if (*ptr == '\0' || *ptr == '\n') { @@ -135,8 +135,7 @@ void monkey_fetch_filetype_init(const char *mimefile) /* search for the first whitespace char or * NUL or NL which is the end of the ext. */ - while (*ptr && (!ascii_is_space(*ptr)) && - *ptr != '\n') + while (*ptr && (!ascii_is_space(*ptr))) ptr++; if (*ptr == '\0' || *ptr == '\n') { -- cgit v1.2.3