public inbox for gcc-cvs-wwwdocs@sourceware.org
help / color / mirror / Atom feed
* gcc-wwwdocs branch master updated. c9e275660a19c804dd8c591c73cb9b169a9d7573
@ 2024-04-04 20:10 Tobias Burnus
  0 siblings, 0 replies; only message in thread
From: Tobias Burnus @ 2024-04-04 20:10 UTC (permalink / raw)
  To: gcc-cvs-wwwdocs

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gcc-wwwdocs".

The branch, master has been updated
       via  c9e275660a19c804dd8c591c73cb9b169a9d7573 (commit)
      from  6eeeb6a53c2e57e3f02f97da176589cf15877247 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit c9e275660a19c804dd8c591c73cb9b169a9d7573
Author: Tobias Burnus <tburnus@baylibre.com>
Date:   Thu Apr 4 22:07:28 2024 +0200

    gcc-14/changes.html: Fix HTML syntax
    
    W3.org's HTML checker complained about missing <code> and
    about <ol>...</ol> within a <p>...</p> (or rather: it complained about
    the unexpected '</p>').

diff --git a/htdocs/gcc-14/changes.html b/htdocs/gcc-14/changes.html
index 045893cf..1cc68430 100644
--- a/htdocs/gcc-14/changes.html
+++ b/htdocs/gcc-14/changes.html
@@ -861,7 +861,7 @@ __asm (".global __flmap_lock"  "\n\t"
   <li>
     <!-- commit r14-3001-g021077b94741c9 [PR110426] -->
     The analyzer now makes use of the function attribute
-    <a href="https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alloc_005fsize-function-attribute">alloc_size</code></a>
+    <a href="https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alloc_005fsize-function-attribute"><code>alloc_size</code></a>
     allowing
     <a href="https://gcc.gnu.org/onlinedocs/gcc/Static-Analyzer-Options.html#index-fanalyzer"><code>-fanalyzer</code></a>
     to emit
@@ -887,7 +887,7 @@ __asm (".global __flmap_lock"  "\n\t"
   </li>
   <li>
     <!-- commit r14-2029-g0e466e978c7286 [PR106626] -->
-    <p>The warning
+      The warning
       <a href="https://gcc.gnu.org/onlinedocs/gcc/Static-Analyzer-Options.html#index-Wanalyzer-out-of-bounds"><code>-Wanalyzer-out-of-bounds</code></a>
       has been extended so that, where possible, it will emit a text-based
       diagram visualizing the spatial relationship between
@@ -899,9 +899,9 @@ __asm (".global __flmap_lock"  "\n\t"
       whether they overlap, are touching, are close or far apart;
       which one is before or after in memory, the relative sizes involved,
       the direction of the access (read vs write), and, in some cases,
-      the values of data involved.</p>
+      the values of data involved.
     <p>Such "text art" diagrams can be controlled (or suppressed) via a new
-      <a href="https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-text-art-charset">-fdiagnostics-text-art-charset=</code></a> option.
+      <a href="https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-text-art-charset"><code>-fdiagnostics-text-art-charset=</code></a> option.
     <p>For example, given the out-of-bounds write in <code>strcat</code> in:
       <!-- commit r14-4477-gb365e9d57ad445 -->
 <pre>
@@ -953,17 +953,17 @@ it emits:
   <li>
     <!-- commit r14-6228-g3bd8241a1f1982 -->
     The SARIF output from
-    <a href="https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-format">-fdiagnostics-format=</code></a>
+    <a href="https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-format"><code>-fdiagnostics-format=</code></a>
     now adds indentation and newlines to reflect the logical JSON structure of the data.  The previous compact behavior can be restored via the new option
-    <a href="https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Message-Formatting-Options.html#index-fno-diagnostics-json-formatting">-fno-diagnostics-json-formatting</code></a>.
+    <a href="https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Message-Formatting-Options.html#index-fno-diagnostics-json-formatting"><code>-fno-diagnostics-json-formatting</code></a>.
     This also applies to the older output format named "json".
   </li>
   <li>
     <!-- commit r14-2881-g75d623946d4b6e [PR109361] -->
     If profiling information about the compiler itself is requested via
-    <a href="https://gcc.gnu.org/onlinedocs/gcc/Developer-Options.html#index-ftime-report">-ftime-report</code></a>,
+    <a href="https://gcc.gnu.org/onlinedocs/gcc/Developer-Options.html#index-ftime-report"><code>-ftime-report</code></a>,
     and a SARIF output format is requested via
-    <a href="https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-format">-fdiagnostics-format=</code></a>,
+    <a href="https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-format"><code>-fdiagnostics-format=</code></a>,
     then the timing and memory usage data is now written in JSON form into
     the SARIF output, rather than as plain text to stderr.
   </li>

-----------------------------------------------------------------------

Summary of changes:
 htdocs/gcc-14/changes.html | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
gcc-wwwdocs

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-04-04 20:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-04 20:10 gcc-wwwdocs branch master updated. c9e275660a19c804dd8c591c73cb9b169a9d7573 Tobias Burnus

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).