re PR libfortran/36546 (Namelist error with tab following a comma and newline)

2008-06-16  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/36546
	* io/list_read.c (eat_separator): Add tab character to condition
	for looping past whitespace.

From-SVN: r136859
This commit is contained in:
Jerry DeLisle 2008-06-17 04:14:07 +00:00
parent 151d752224
commit fb669c2b42
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-06-16 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/36546
* io/list_read.c (eat_separator): Add tab character to condition
for looping past whitespace.
2008-06-14 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/36515

View file

@ -366,7 +366,7 @@ eat_separator (st_parameter_dt *dtp)
}
}
}
while (c == '\n' || c == '\r' || c == ' ');
while (c == '\n' || c == '\r' || c == ' ' || c == '\t');
unget_char (dtp, c);
}
break;