summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/tiedir/tie-w2c.ch
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_tex@freenet.de>2020-06-07 01:21:22 +0000
committerAndreas Scherer <andreas_tex@freenet.de>2020-06-07 01:21:22 +0000
commit9bf805bcc7f50b7195321db54e81826b4d14d8ed (patch)
treedaee93543240758a3d9543bd27acb522758bbf1f /Build/source/texk/web2c/tiedir/tie-w2c.ch
parent5542536008e52c8f0543e15a060bc5139353d160 (diff)
[TIE] Underscore 'enum'erated values in index.
git-svn-id: svn://tug.org/texlive/trunk@55459 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/tiedir/tie-w2c.ch')
-rw-r--r--Build/source/texk/web2c/tiedir/tie-w2c.ch26
1 files changed, 13 insertions, 13 deletions
diff --git a/Build/source/texk/web2c/tiedir/tie-w2c.ch b/Build/source/texk/web2c/tiedir/tie-w2c.ch
index ab19b5efecb..4e90019cba0 100644
--- a/Build/source/texk/web2c/tiedir/tie-w2c.ch
+++ b/Build/source/texk/web2c/tiedir/tie-w2c.ch
@@ -106,9 +106,9 @@ static int history=spotless;
@y
@<Global variables@>=
typedef enum {
- spotless,
- troublesome,
- fatal } return_code;
+ @!spotless,
+ @!troublesome,
+ @!fatal } return_code;
static return_code history=spotless;
@z
@@ -181,14 +181,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.548
@@ -198,9 +198,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
Section 24