public inbox for fortran@gcc.gnu.org
 help / color / mirror / Atom feed
* [wwwdocs, patch] Update Fortran part of gcc-5/changes.html
@ 2015-01-12 10:09 Tobias Burnus
  2017-03-11 23:17 ` Gerald Pfeifer
  0 siblings, 1 reply; 2+ messages in thread
From: Tobias Burnus @ 2015-01-12 10:09 UTC (permalink / raw)
  To: gcc-patches, fortran, Gerald Pfeifer

[-- Attachment #1: Type: text/plain, Size: 284 bytes --]

Hi all, hi Gerald,

sync the changes from https://gcc.gnu.org/wiki/GFortran/News#GCC5 for the
today's added compatibilty section and Janne's locale addition.

If there are no objects or comments, I will commit it this evening

Tobias,
who is really behind reading fortran@gcc emails.

[-- Attachment #2: wwwdocs.diff --]
[-- Type: text/x-diff, Size: 2658 bytes --]

Index: changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v
retrieving revision 1.57
diff -p -u -r1.57 changes.html
--- changes.html	8 Jan 2015 16:50:23 -0000	1.57
+++ changes.html	12 Jan 2015 10:08:29 -0000
@@ -333,6 +333,24 @@ void operator delete[] (void *, std::siz
 
 <h3 id="fortran">Fortran</h3>
   <ul>
+    <li>Compatibility notice:<ul>
+      <li>The version of the module files (.mod) has been incremented.<li>
+      <li>For free-form source files,
+        <a href="https://gcc.gnu.org/onlinedocs/gfortran/Error-and-Warning-Options.html"><code>-Werror=line-truncation</code></a>
+        is now enabled by default; note that comments exceeding the line length
+        are not diagnosed.  (For fixed-form source code, the same warning is
+        available but turned off by default, such that excess characters are
+        ignored. <code>-ffree-line-length-<em>n</em><code> and
+        <code>-ffixed-line-length-<em>n</em> can be used to modify the default
+        line lengths of 132 and 72 columns, respectively.)</li>
+      <li>The <code>-Wtabs</code> option is now more sensible: with
+        <code>-Wtabs<code> the compiler warns if it encounters tabs and with
+        <code>-Wno-tabs</code> this warning is turned off.  Before,
+        <code>-Wno-tabs</code> warned and <code>-Wtabs</code> turned the warning
+        off.  As before, the warning is also enabled by <code>-Wall</code>,
+        <code>-pedantic</code> and the <code>f95</code>, <code>f2003</code>,
+        <code>f2008</code> and <code>f2008ts</code> options of <code>-std=</code>.</li>
+      </ul><li>
     <li>Incomplete support for colorizing diagnostics emitted by
       gfortran has been added. The
       option <code><a href="https://gcc.gnu.org/onlinedocs/gcc/Language-Independent-Options.html"
@@ -359,6 +377,10 @@ void operator delete[] (void *, std::siz
     <li>The <code>-Wuse-without-only</code> option has been added to warn when a
       <code>USE</code> statement has no <code>ONLY</code> qualifier and, thus,
       implicitly imports all public entities of the used module.</li>
+    <li>Formatted READ and WRITE statements now work correctly in locale-aware
+      programs.  For more information and potential caveats, see
+      <a href="https://gcc.gnu.org/onlinedocs/gfortran/Thread-safety-of-the-runtime-library.html">Section
+      5.3 Thread-safety of the runtime library in the manual</a>.</li>
     <li><a href="https://gcc.gnu.org/wiki/Fortran2003Status">Fortran 2003</a>:
     <ul>
       <li>The intrinsic IEEE modules (<code>IEEE_FEATURES</code>,

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [wwwdocs, patch] Update Fortran part of gcc-5/changes.html
  2015-01-12 10:09 [wwwdocs, patch] Update Fortran part of gcc-5/changes.html Tobias Burnus
@ 2017-03-11 23:17 ` Gerald Pfeifer
  0 siblings, 0 replies; 2+ messages in thread
From: Gerald Pfeifer @ 2017-03-11 23:17 UTC (permalink / raw)
  To: Tobias Burnus; +Cc: gcc-patches, fortran

On Mon, 12 Jan 2015, Tobias Burnus wrote:
> If there are no objects or comments, I will commit it this evening

Thanks, Tobias!

> who is really behind reading fortran@gcc emails.

Turns out, I also have a couple of GCC-related mails that got stuck
on my end (as probably has become obvious from my patches/responses
the last weeks especially).

Below a small set of editorial changes I applied on top.

Index: gcc-5/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v
retrieving revision 1.145
diff -u -r1.145 changes.html
--- gcc-5/changes.html	25 Feb 2017 21:14:41 -0000	1.145
+++ gcc-5/changes.html	11 Mar 2017 23:16:59 -0000
@@ -509,9 +509,9 @@
   <ul>
     <li>Compatibility notice:<ul>
       <li>The version of the module files (.mod) has been incremented.</li>
-      <li>For free-form source files,
+      <li>For free-form source files
         <a href="https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gfortran/Error-and-Warning-Options.html"><code>-Werror=line-truncation</code></a>
-        is now enabled by default; note that comments exceeding the line length
+        is now enabled by default. Note that comments exceeding the line length
         are not diagnosed.  (For fixed-form source code, the same warning is
         available but turned off by default, such that excess characters are
         ignored. <code>-ffree-line-length-<em>n</em></code> and
@@ -520,10 +520,11 @@
       <li>The <code>-Wtabs</code> option is now more sensible: with
         <code>-Wtabs</code> the compiler warns if it encounters tabs and with
         <code>-Wno-tabs</code> this warning is turned off.  Before,
-        <code>-Wno-tabs</code> warned and <code>-Wtabs</code> turned the warning
-        off.  As before, the warning is also enabled by <code>-Wall</code>,
+        <code>-Wno-tabs</code> warned and <code>-Wtabs</code> disabled the
+        warning.  As before, this warning is also enabled by <code>-Wall</code>,
         <code>-pedantic</code> and the <code>f95</code>, <code>f2003</code>,
-        <code>f2008</code> and <code>f2008ts</code> options of <code>-std=</code>.</li>
+        <code>f2008</code> and <code>f2008ts</code> options of
+        <code>-std=</code>.</li>
       </ul></li>
     <li>Incomplete support for colorizing diagnostics emitted by
       gfortran has been added. The
@@ -551,7 +552,8 @@
     <li>The <code>-Wuse-without-only</code> option has been added to warn when a
       <code>USE</code> statement has no <code>ONLY</code> qualifier and thus
       implicitly imports all public entities of the used module.</li>
-    <li>Formatted READ and WRITE statements now work correctly in locale-aware
+    <li>Formatted <code>READ</code> and <code>WRITE</code> statements now
+      work correctly in locale-aware
       programs.  For more information and potential caveats, see
       <a href="https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gfortran/Thread-safety-of-the-runtime-library.html">Section
       5.3 Thread-safety of the runtime library in the manual</a>.</li>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-03-11 23:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-12 10:09 [wwwdocs, patch] Update Fortran part of gcc-5/changes.html Tobias Burnus
2017-03-11 23:17 ` Gerald Pfeifer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).