summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.awk
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-07-04 03:01:24 +0000
committerNorbert Preining <norbert@preining.info>2021-07-04 03:01:24 +0000
commit7994f86ec5e18f9d0d9f90161a2f26dd26d26af7 (patch)
tree88edb7d1a1aed3183a1350202c898716b4ac59ce /macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.awk
parent03fa062b03ce2bb5385f8f30888f94d441fa5cb4 (diff)
CTAN sync 202107040301
Diffstat (limited to 'macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.awk')
-rw-r--r--macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.awk5
1 files changed, 4 insertions, 1 deletions
diff --git a/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.awk b/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.awk
index 5fea87bf9c..9974d1aefb 100644
--- a/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.awk
+++ b/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/command_data.awk
@@ -1,4 +1,4 @@
-# Copyright 2010-2019 Free Software Foundation, Inc.
+# Copyright 2010-2021 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -74,6 +74,8 @@ BEGIN {
CI = srcdir "/command_ids.h"
print "/* This file automatically generated by command_data.awk */" > CI
+ print "#ifndef COMMAND_IDS_H" > CI
+ print "#define COMMAND_IDS_H" > CI
print > CI
print "/* Useful aliases */" > CI
print "#define CM_hex_09 CM_TAB" > CI
@@ -154,6 +156,7 @@ END {
}
print "};" > CD
print "};" > CI
+ print "#endif" > CI
}