Re: [patch, libgfortran] PR60148 Strings in NAMELIST do not honor DELIM= in open statement

2014-03-02 Thread Steve Kargl
On Sun, Mar 02, 2014 at 02:49:20PM -0800, Jerry DeLisle wrote: > > For this patch I chose to stay consistent with what we currently do. I can > change it to standard conforming. Anyone else have any comments on this? > I would prefer standard conformance, but I'm not the one doing the work (so

Re: [patch, libgfortran] PR60148 Strings in NAMELIST do not honor DELIM= in open statement

2014-03-02 Thread Jerry DeLisle
On 03/02/2014 12:50 PM, Tobias Burnus wrote: --- snip --- > > gfortran seems to be special as it defaults to printing the " (quote) > delimiter > by default while other compilers seem to default to "none". > Looking back at the draft F95 standard that I have I am amazed. As you stated in your

Re: [patch, libgfortran] PR60148 Strings in NAMELIST do not honor DELIM= in open statement

2014-03-02 Thread Tobias Burnus
Dear Jerry, hi all, Jerry DeLisle wrote: The attached patch fixes this by actually implementing it. I cleaned up some of the code by getting rid of the tmp_delim variables and adding a "mode" to write_character which is used to ignore delimiters when writing out variable names and other namelis

[patch, libgfortran] PR60148 Strings in NAMELIST do not honor DELIM= in open statement

2014-03-01 Thread Jerry DeLisle
Hi all, The attached patch fixes this by actually implementing it. I cleaned up some of the code by getting rid of the tmp_delim variables and adding a "mode" to write_character which is used to ignore delimiters when writing out variable names and other namelist parts. I will prepare a test cas