removed bug for identifiers starting with L
This commit is contained in:
parent
9286928275
commit
d186cb605f
1 changed files with 3 additions and 2 deletions
|
@ -233,11 +233,12 @@ preprocess(fn)
|
|||
}
|
||||
continue;
|
||||
case STELL:
|
||||
c = GetChar();
|
||||
UnGetChar();
|
||||
if (c == '"' || c == '\'') {
|
||||
echo(c);
|
||||
echo('L');
|
||||
continue;
|
||||
}
|
||||
UnGetChar();
|
||||
c = 'L';
|
||||
case STIDF: {
|
||||
extern int idfsize; /* ??? */
|
||||
|
|
Loading…
Reference in a new issue