diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 04b0ecf6ac6e..30ad87ab5113 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2007-08-10 Jerry DeLisle + + PR libfortran/33039 + * io/list_read.c (find_nml_name): Check for a space after a namelist + name match. + 2007-08-09 Tobias Burnus PR fortran/32987 diff --git a/libgfortran/io/list_read.c b/libgfortran/io/list_read.c index 41d4a604291f..219e9218ccac 100644 --- a/libgfortran/io/list_read.c +++ b/libgfortran/io/list_read.c @@ -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. */