re PR libfortran/30918 (Failure to skip commented out NAMELIST)
2007-02-24 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libgfortran/30918 * io/listread.c (namelist_read): Eat comment line. From-SVN: r122307
This commit is contained in:
parent
6b7039e2b6
commit
4f8d744edb
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-02-24 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libgfortran/30918
|
||||
* io/listread.c (namelist_read): Eat comment line.
|
||||
|
||||
2007-02-22 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libgfortran/30910
|
||||
|
|
|
@ -2567,6 +2567,10 @@ find_nml_name:
|
|||
case '&':
|
||||
break;
|
||||
|
||||
case '!':
|
||||
eat_line (dtp);
|
||||
goto find_nml_name;
|
||||
|
||||
case '=':
|
||||
c = next_char (dtp);
|
||||
if (c == '?')
|
||||
|
|
Loading…
Add table
Reference in a new issue