texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: * tp/Texinfo/XS/main/command_data.awk: rename CM_


From: Patrice Dumas
Subject: branch master updated: * tp/Texinfo/XS/main/command_data.awk: rename CM_POUND_SIGN as CM_DOUBLE_QUOTE. Add CM_AMPERSAND.
Date: Wed, 02 Oct 2024 06:22:01 -0400

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new cd569addec * tp/Texinfo/XS/main/command_data.awk: rename CM_POUND_SIGN 
as CM_DOUBLE_QUOTE.  Add CM_AMPERSAND.
cd569addec is described below

commit cd569addecf49082ed89517c6b1fbbf7adf78afc
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Wed Jul 31 13:06:02 2024 +0200

    * tp/Texinfo/XS/main/command_data.awk: rename CM_POUND_SIGN as
    CM_DOUBLE_QUOTE.  Add CM_AMPERSAND.
---
 ChangeLog                           | 5 +++++
 tp/Texinfo/XS/main/command_data.awk | 3 ++-
 tp/Texinfo/XS/main/command_ids.h    | 3 ++-
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f9d35b2858..5ae93d4e39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-07-31  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/XS/main/command_data.awk: rename CM_POUND_SIGN as
+       CM_DOUBLE_QUOTE.  Add CM_AMPERSAND.
+
 2024-07-31  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/Convert/HTML.pm (converter_initialize),
diff --git a/tp/Texinfo/XS/main/command_data.awk 
b/tp/Texinfo/XS/main/command_data.awk
index 6dffd9632e..30006f4869 100644
--- a/tp/Texinfo/XS/main/command_data.awk
+++ b/tp/Texinfo/XS/main/command_data.awk
@@ -85,7 +85,8 @@ BEGIN {
     print "#define CM_hex_0a CM_NEWLINE"          > CI
     print "#define CM_hex_20 CM_SPACE"            > CI
     print "#define CM_hex_21 CM_EXCLAMATION_MARK" > CI
-    print "#define CM_hex_22 CM_POUND_SIGN"       > CI
+    print "#define CM_hex_22 CM_DOUBLE_QUOTE"     > CI
+    print "#define CM_hex_26 CM_AMPERSAND"        > CI
     print "#define CM_hex_27 CM_APOSTROPHE"       > CI
     print "#define CM_hex_2a CM_ASTERISK"         > CI
     print "#define CM_hex_2c CM_COMMA"            > CI
diff --git a/tp/Texinfo/XS/main/command_ids.h b/tp/Texinfo/XS/main/command_ids.h
index bafc78e2be..0fced14d51 100644
--- a/tp/Texinfo/XS/main/command_ids.h
+++ b/tp/Texinfo/XS/main/command_ids.h
@@ -7,7 +7,8 @@
 #define CM_hex_0a CM_NEWLINE
 #define CM_hex_20 CM_SPACE
 #define CM_hex_21 CM_EXCLAMATION_MARK
-#define CM_hex_22 CM_POUND_SIGN
+#define CM_hex_22 CM_DOUBLE_QUOTE
+#define CM_hex_26 CM_AMPERSAND
 #define CM_hex_27 CM_APOSTROPHE
 #define CM_hex_2a CM_ASTERISK
 #define CM_hex_2c CM_COMMA



reply via email to

[Prev in Thread] Current Thread [Next in Thread]