------- Comment #2 from burnus at gcc dot gnu dot org  2008-01-21 10:55 -------
Actually, this does not work as in scanner.c's "load_line" the '\t' is changed
into 6 spaces. And of cause, if one changes this, e.g., "\tPARAMETER" is no
longer recognized ...

+             if (c < 1 || c > 9)
And this should be: if (c < '1' || c > '9')


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34899

Reply via email to