Commit 1c8745ce by Jerry DeLisle

re PR fortran/24268 (gfortran rejects valid format statement)

2005-12-16  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/24268
	* io.c (format_lex): Allow whitespace within text of format specifier.

From-SVN: r108695
parent 6dc5dc31
2005-12-16 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/24268
* io.c (format_lex): Allow whitespace within text of format specifier.
2005-12-16 Steven G. Kargl <kargls@comcast.net>
PR fortran/25106
......
......@@ -233,7 +233,7 @@ format_lex (void)
if (ISDIGIT (c))
value = 10 * value + c - '0';
}
while (ISDIGIT (c));
while (ISDIGIT (c) || gfc_is_whitespace(c));
unget_char ();
token = zflag ? FMT_ZERO : FMT_POSINT;
......
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