This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch, fortran] PR24268 whitespace in format strings. Revised


On Sat, Dec 17, 2005 at 08:13:11AM -0800, Jerry DeLisle wrote:
> >The operator belongs on the continuation line, i.e.
> 
> oops. OK
> 
> >
> >!       while (ISDIGIT (c) || (gfc_current_form == FORM_FIXED
> >!                              && gfc_is_whitespace(c)) );

Or:
      while (ISDIGIT (c)
             || (gfc_current_form == FORM_FIXED && gfc_is_whitespace (c)));

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]