diff options
author | Andreas Scherer <andreas_tex@freenet.de> | 2020-06-07 01:21:22 +0000 |
---|---|---|
committer | Andreas Scherer <andreas_tex@freenet.de> | 2020-06-07 01:21:22 +0000 |
commit | 9bf805bcc7f50b7195321db54e81826b4d14d8ed (patch) | |
tree | daee93543240758a3d9543bd27acb522758bbf1f /Build | |
parent | 5542536008e52c8f0543e15a060bc5139353d160 (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')
-rw-r--r-- | Build/source/texk/web2c/tiedir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/tiedir/tie-w2c.ch | 26 |
2 files changed, 17 insertions, 13 deletions
diff --git a/Build/source/texk/web2c/tiedir/ChangeLog b/Build/source/texk/web2c/tiedir/ChangeLog index d4be84f93cc..efea7829710 100644 --- a/Build/source/texk/web2c/tiedir/ChangeLog +++ b/Build/source/texk/web2c/tiedir/ChangeLog @@ -1,3 +1,7 @@ +2020-06-07 Andreas Scherer <https://ascherer.github.io> + + * tie-w2c.ch: Underscore 'enum'erated values in index. + 2020-06-05 Andreas Scherer <https://ascherer.github.io> * tie-w2c.ch: Format changes similar to CWEB. 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 |