On Mon, 4 Apr 2022, Fernando Oleo Blanco via Gcc-patches wrote: > this is my first patch to GCC, if there is anything off, please, say > so. I have used the default HTML formatting that comes with Emacs.
I am not familiar with that Emacs mode, but < and > are special characters in HTML and have to be written as < (less than) and > (greater than) respectively. On Mon, 11 Apr 2022, Arnaud Charlet via Gcc-patches wrote: > Thank you, I've just merged your contribution. This is the first batch of fixes. Pushed. Gerald commit 67c72bb30309882ce465519e97fb14592d18ff2c Author: Gerald Pfeifer <ger...@pfeifer.com> Date: Wed Apr 13 22:43:05 2022 -0600 gcc-12: Properly escape < and >. diff --git a/htdocs/gcc-12/changes.html b/htdocs/gcc-12/changes.html index bd9e5122..057d1274 100644 --- a/htdocs/gcc-12/changes.html +++ b/htdocs/gcc-12/changes.html @@ -205,10 +205,10 @@ a work-in-progress.</p> <ul> <li>Fixed lower bound for unconstrained arrays. <ul> - <li><code>type Matrix is array (Natural range 0 .. <>, Natural - range 0 .. <>) of Integer;</code> is now valid.</li> + <li><code>type Matrix is array (Natural range 0 .. <>, + Natural range 0 .. <>) of Integer;</code> is now valid.</li> <li>Subtypes can also specify a lower bound: <code>subtype - String_1 is String (1 .. <>);</code>. Boundaries from slices + String_1 is String (1 .. <>);</code>. Boundaries from slices will "slide" to the correct lower bound of the subtype.</li> </ul> </li>