re PR fortran/35617 (read namelist error)
2008-03-17 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libfortran/35617 * io/list_read.c (eat_separator): If next character after eatline is '!' then eatline again. From-SVN: r133302
This commit is contained in:
parent
f82f5289e7
commit
5a79ae8432
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-03-17 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libfortran/35617
|
||||
* io/list_read.c (eat_separator): If next character after eatline is '!'
|
||||
then eatline again.
|
||||
|
||||
2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* aclocal.m4: Regenerate.
|
||||
|
|
|
@ -356,6 +356,11 @@ eat_separator (st_parameter_dt *dtp)
|
|||
{
|
||||
eat_line (dtp);
|
||||
c = next_char (dtp);
|
||||
if (c == '!')
|
||||
{
|
||||
eat_line (dtp);
|
||||
c = next_char (dtp);
|
||||
}
|
||||
}
|
||||
}
|
||||
while (c == '\n' || c == '\r' || c == ' ');
|
||||
|
|
Loading…
Add table
Reference in a new issue