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:
Jerry DeLisle 2007-02-25 02:27:17 +00:00
parent 6b7039e2b6
commit 4f8d744edb
2 changed files with 9 additions and 0 deletions

View file

@ -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

View file

@ -2567,6 +2567,10 @@ find_nml_name:
case '&':
break;
case '!':
eat_line (dtp);
goto find_nml_name;
case '=':
c = next_char (dtp);
if (c == '?')