mirror of git://gcc.gnu.org/git/gcc.git
re PR fortran/36676 (Namelist Comments Problems)
2008-07-01 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR fortran/36676 * io/list_read.c (find_nml_name): Use eat_separator instead of eat_line. From-SVN: r137334
This commit is contained in:
parent
36249aadb3
commit
bdd3085e66
|
|
@ -1,3 +1,8 @@
|
||||||
|
2008-07-01 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||||
|
|
||||||
|
PR fortran/36676
|
||||||
|
* io/list_read.c (find_nml_name): Use eat_separator instead of eat_line.
|
||||||
|
|
||||||
2008-06-28 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
2008-06-28 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||||
|
|
||||||
PR fortran/36657
|
PR fortran/36657
|
||||||
|
|
|
||||||
|
|
@ -2922,8 +2922,8 @@ find_nml_name:
|
||||||
goto find_nml_name;
|
goto find_nml_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c == '!')
|
unget_char (dtp, c);
|
||||||
eat_line (dtp);
|
eat_separator (dtp);
|
||||||
|
|
||||||
/* Ready to read namelist objects. If there is an error in input
|
/* Ready to read namelist objects. If there is an error in input
|
||||||
from stdin, output the error message and continue. */
|
from stdin, output the error message and continue. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue