From 889baffc861063e1df611dc79c7e3455d225de32 Mon Sep 17 00:00:00 2001 From: uqs Date: Mon, 13 Dec 2010 10:48:49 +0000 Subject: Remove duplicate check, turning dead code into live code. Coverity CID: 5114 Reviewed by: jilles --- bin/sh/parser.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'bin/sh') diff --git a/bin/sh/parser.c b/bin/sh/parser.c index 2687003..e292ad0 100644 --- a/bin/sh/parser.c +++ b/bin/sh/parser.c @@ -887,8 +887,6 @@ xxreadtoken(void) startlinno = plinno; for (;;) { /* until token or start of word found */ c = pgetc_macro(); - if (c == ' ' || c == '\t') - continue; /* quick check for white space first */ switch (c) { case ' ': case '\t': continue; -- cgit v1.1