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  5fb1646f0af29002e8c6c00fc4cfc50baab199ef (commit)
      from  ed811f172344a9205db01e169e88ab93cab55161 (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 5fb1646f0af29002e8c6c00fc4cfc50baab199ef
Author: Gerald Pfeifer <ger...@pfeifer.com>
Date:   Sat Mar 1 20:40:11 2025 +0100

    cxx-status: Work around issue in bin/preprocess-html.py
    
    This script rewrites
      <h2 id="cxx20"><a id="cxx2a">C++20 Support in GCC</a></h2>
    to
      <h2 id="cxx20"><a id="cxx2a"><a href="#cxx20"><a id="cxx2a">C++20...
    which is not proper HTML and duplicates the <a id="cxx2a"> tag.
    
    Work around this by pushing id="cxx2a" into the following <p>.

diff --git a/htdocs/projects/cxx-status.html b/htdocs/projects/cxx-status.html
index 369d6fb2..94046aac 100644
--- a/htdocs/projects/cxx-status.html
+++ b/htdocs/projects/cxx-status.html
@@ -670,9 +670,9 @@
     -->
   </table>
 
-  <h2 id="cxx20"><a id="cxx2a">C++20 Support in GCC</a></h2>
+  <h2 id="cxx20">C++20 Support in GCC</h2>
 
-  <p>GCC has experimental support for the previous revision of the C++
+  <p id="cxx2a">GCC has experimental support for the previous revision of the 
C++
   standard, which was published in 2020.
   The status of C++20 library features is described in
   <a 
href="https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2020";>the
 library documentation</a>.</p>

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

Summary of changes:
 htdocs/projects/cxx-status.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
gcc-wwwdocs

Reply via email to