Remove duplicate check, turning dead code into live code.

Coverity CID:	5114
Reviewed by:	jilles
This commit is contained in:
Ulrich Spörlein 2010-12-13 10:48:49 +00:00
parent f3143b5c2f
commit 326b41010a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=216404

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;