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;
|
continue;
|
||||||
case STELL:
|
case STELL:
|
||||||
|
c = GetChar();
|
||||||
|
UnGetChar();
|
||||||
if (c == '"' || c == '\'') {
|
if (c == '"' || c == '\'') {
|
||||||
echo(c);
|
echo('L');
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
UnGetChar();
|
|
||||||
c = 'L';
|
c = 'L';
|
||||||
case STIDF: {
|
case STIDF: {
|
||||||
extern int idfsize; /* ??? */
|
extern int idfsize; /* ??? */
|
||||||
|
|
Loading…
Add table
Reference in a new issue