I've check the changes with W3 validator. There are no problems related to my changes, however, it does object to the lack of character encoding in the file. My knowledge of HTML is limited, so don't know how to fix that.

This is the first time in changing the wwwdoc, I haven't included a change log as there there doesn't appear to be any ChangeLog files.

The patch is attached. OK to commit?

--
https://www.codethink.co.uk/privacy.html

>From 2090a5d6d2e96c2a99094cd0a5f5d6e5c5bd3409 Mon Sep 17 00:00:00 2001
From: Mark Eggleston <markeggles...@codethink.com>
Date: Tue, 26 Nov 2019 10:12:44 +0000
Subject: [PATCH] Update Fortran changes

---
 htdocs/gcc-10/changes.html | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/htdocs/gcc-10/changes.html b/htdocs/gcc-10/changes.html
index 52eb303..81f2280 100644
--- a/htdocs/gcc-10/changes.html
+++ b/htdocs/gcc-10/changes.html
@@ -206,6 +206,40 @@ a work-in-progress.</p>
     with <code>-std=legacy</code>.  <code>-Wargument-mismatch</code>
     has been removed.
   </li>
+  <li>
+    Default fields widths can be used for <code>I</code>, <code>F</code>
+    and <code>G</code> format specifiers when excplicit widths are omitted.
+    Use the option <code>-fdec-format-defaults</code>, this options is implied
+    with <code>-fdec</code>. 
+  </li>
+  <li>
+    A blank format item at the end of a format specification i.e. nothing
+    following the final comma is allowed.  Use the option
+    <code>-fdec-blank-format-item</code>, this options is implied with
+    <code>-fdec</code>.
+  </li>
+  <li>
+    Variables with the <code>AUTOMATIC</code> attribute can be used in
+    <code>EQUIVALENCE</code> statements.
+  </li>
+  <li>
+    Character type names in errors and warnings now include <code>len</code>
+    in addition to <code>kind</code>, <code>*</code> is used for assumed
+    length. The kind is omitted if it the default kind. Examples:
+    <code>CHARACTER(12)</code>, <code>CHARACTER(6,4)</code>.
+  </li>
+  <li>
+    Allow character literals in assignments and <code>DATA</code> statements
+    for numeric (<code>INTEGER</code>, <code>REAL</code>, or
+    <code>COMPLEX</code>) or <code>LOGICAL</code> variables.  Use the option
+    <code>-fdec-char-conversions</code>, this options is implied with
+    <code>-fdec</code>.
+  </li>
+  <li>
+    DEC comparisons, i.e. allow Hollerith constants to be used in comparisons
+    with <code>INTEGER</code>, <code>REAL</code>, <code>COMPLEX</code> and
+    <code>CHARACTER</code> expressions. Use the option <code>-fdec</code>.
+  </li>
 </ul>
 <!-- <h3 id="go">Go</h3> -->
 
-- 
1.8.3.1

Reply via email to