Commit cf9293a1 by Jerry DeLisle

re PR fortran/33039 (Read NAMELIST: reads wrong namelist name)

2007-08-10  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libfortran/33039
	* io/list_read.c (find_nml_name): Check for a space after a namelist
	name match.

From-SVN: r127332
parent caba2081
2007-08-10 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/33039
* io/list_read.c (find_nml_name): Check for a space after a namelist
name match.
2007-08-09 Tobias Burnus <burnus@net-b.de>
PR fortran/32987
......
......@@ -2593,6 +2593,14 @@ find_nml_name:
if (dtp->u.p.nml_read_error)
goto find_nml_name;
/* A trailing space is required, we give a little lattitude here, 10.9.1. */
c = next_char (dtp);
if (!is_separator(c))
{
unget_char (dtp, c);
goto find_nml_name;
}
/* Ready to read namelist objects. If there is an error in input
from stdin, output the error message and continue. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment