Remove duplicate check, turning dead code into live code.

Coverity CID:	5114
Reviewed by:	jilles
This commit is contained in:
uqs 2010-12-13 10:48:49 +00:00
parent 0f8f817906
commit 889baffc86

View File

@ -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;