summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_tex@freenet.de>2020-06-07 01:19:25 +0000
committerAndreas Scherer <andreas_tex@freenet.de>2020-06-07 01:19:25 +0000
commit5542536008e52c8f0543e15a060bc5139353d160 (patch)
tree04e6361ce918e761d8b6c890250ebbed8daf4a40 /Build
parente3fb746eca23109a2cb418b2684bc3b35424340a (diff)
[CTIE] Underscore 'enum'erated values in index.
git-svn-id: svn://tug.org/texlive/trunk@55458 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/ctiedir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/ctiedir/ctie-k.ch26
2 files changed, 17 insertions, 13 deletions
diff --git a/Build/source/texk/web2c/ctiedir/ChangeLog b/Build/source/texk/web2c/ctiedir/ChangeLog
index 99f56da553f..4c1602511b7 100644
--- a/Build/source/texk/web2c/ctiedir/ChangeLog
+++ b/Build/source/texk/web2c/ctiedir/ChangeLog
@@ -1,3 +1,7 @@
+2020-06-07 Andreas Scherer <https://ascherer.github.io>
+
+ * ctie-k.ch: Underscore 'enum'erated values in index.
+
2020-06-05 Andreas Scherer <https://ascherer.github.io>
* ctie-k.ch: Format changes similar to CWEB.
diff --git a/Build/source/texk/web2c/ctiedir/ctie-k.ch b/Build/source/texk/web2c/ctiedir/ctie-k.ch
index 8b2c90ad110..bf2e92d770d 100644
--- a/Build/source/texk/web2c/ctiedir/ctie-k.ch
+++ b/Build/source/texk/web2c/ctiedir/ctie-k.ch
@@ -162,9 +162,9 @@ int history=spotless;
@y
@<Global variables@>=
typedef enum {
- spotless,
- troublesome,
- fatal } return_code;
+ @!spotless,
+ @!troublesome,
+ @!fatal } return_code;
static return_code history=spotless;
@z
@@ -220,14 +220,14 @@ typedef int in_file_modes; /* should be |enum(search, test, reading, ignore)| */
typedef int file_types; /* should be |enum(unknown, master, chf)| */
@y
typedef enum {
- search,
- test,
- reading,
- ignore } in_file_modes;
+ @!search,
+ @!test,
+ @!reading,
+ @!ignore } in_file_modes;
typedef enum {
- unknown,
- master,
- chf } file_types;
+ @!unknown,
+ @!master,
+ @!chf } file_types;
@z
@x l.230 dito
@@ -237,9 +237,9 @@ typedef enum {
typedef int out_md_type; /* should be |enum(normal, pre, post)| */
@y
typedef enum {
- normal,
- pre,
- post } out_md_type;
+ @!normal,
+ @!pre,
+ @!post } out_md_type;
@z
@x l.284 way too short!