diff options
Diffstat (limited to 'gcc/fortran/module.c')
-rw-r--r-- | gcc/fortran/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/module.c b/gcc/fortran/module.c index c48bc68..9cb082a 100644 --- a/gcc/fortran/module.c +++ b/gcc/fortran/module.c @@ -1116,7 +1116,7 @@ parse_atom (void) { c = module_char (); } - while (c == ' ' || c == '\n'); + while (c == ' ' || c == '\r' || c == '\n'); switch (c) { |