This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/34899] Continuation lines with <tab><number> not recognized



------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]