#if X=3 caused infinite loop
This commit is contained in:
parent
7ef2d1bc37
commit
2807862aba
1 changed files with 5 additions and 8 deletions
|
@ -53,7 +53,6 @@ GetToken(ptok)
|
|||
|
||||
again: /* rescan the input after an error or replacement */
|
||||
LoadChar(c);
|
||||
go_on:
|
||||
if ((c & 0200) && c != EOI)
|
||||
fatal("non-ascii '\\%03o' read", c & 0377);
|
||||
switch (class(c)) { /* detect character class */
|
||||
|
@ -118,13 +117,11 @@ go_on:
|
|||
PushBack();
|
||||
return ptok->tk_symb = c;
|
||||
case '=':
|
||||
if (nch == '=')
|
||||
if (nch != '=') {
|
||||
PushBack();
|
||||
error("missing =");
|
||||
}
|
||||
return ptok->tk_symb = EQUAL;
|
||||
/* The following piece of code tries to recognise
|
||||
old-fashioned assignment operators `=op'
|
||||
*/
|
||||
error("illegal character");
|
||||
goto go_on;
|
||||
case '>':
|
||||
if (nch == '=')
|
||||
return ptok->tk_symb = GREATEREQ;
|
||||
|
|
Loading…
Reference in a new issue