From c4ee664d0b2f4e118106fdd49eb50d9fb3eaeee3 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Thu, 2 May 2024 21:08:11 +0100 Subject: Don't check parser_t.c against EOF parser_t.c is a char which may be unsigned on some platforms and therefore incapable of holding EOF. This field is only ever set from parser_t.source which is a char array, which only ever originates from {main,strquote,include} -> parser_pp -> {init_parser,parser_reset} which all assign it from char arrays. This means it should never be EOF, so the check can be dropped. Also update the documentation so it matches. --- src/stem.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') diff --git a/src/stem.c b/src/stem.c index 651d624..f623ae7 100644 --- a/src/stem.c +++ b/src/stem.c @@ -331,8 +331,6 @@ value_t *parser_get_next(parser_t *p) { return parse_quote(p); case '\0': return NULL; - case EOF: - return NULL; default: return parse_word(p); } -- cgit