Commit e96e22e3 by Daniel Franke Committed by Daniel Franke

re PR fortran/34324 (Module files on CRLF systems)

2007-12-14  Daniel Franke  <franke.daniel@gmail.com>

        PR fortran/34324
        * module.c (parse_atom): Fixed parsing of modules files whose
        lines are terminated by CRLF.

From-SVN: r130928
parent cc79ab0e
2007-12-14 Daniel Franke <franke.daniel@gmail.com>
PR fortran/34324
* module.c (parse_atom): Fixed parsing of modules files whose
lines are terminated by CRLF.
2007-12-13 Anton Korobeynikov <asl@math.spbu.ru>
* trans-decl.c (gfc_build_builtin_function_decls): Correct decl
......
......@@ -1116,7 +1116,7 @@ parse_atom (void)
{
c = module_char ();
}
while (c == ' ' || c == '\n');
while (c == ' ' || c == '\r' || c == '\n');
switch (c)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment