diff options
author | Andreas Scherer <andreas_tex@freenet.de> | 2023-09-20 10:24:51 +0000 |
---|---|---|
committer | Andreas Scherer <andreas_tex@freenet.de> | 2023-09-20 10:24:51 +0000 |
commit | 7908c999333330cd64e5632107f879070c9f3b68 (patch) | |
tree | f1b001bb950f34add7cd36f774557bde38a48687 /Build/source/texk/web2c/cwebdir/comm-w2c.ch | |
parent | 706e07793932f1c3b036fe098fd29032f62fc6cf (diff) |
[CWEB] Factor out cwebacromac.tex.
Extract common macros from cwebmac.tex and the PDF variants of the
CTWILL macros. Update cwebman.tex accordingly.
Fixes in CWEB code:
- Consistent formatting of terminal output in cases of error
- Revert fputs back to printf
- Add curly braces for progress report (harmless glitch in CWEB 2.0)
git-svn-id: svn://tug.org/texlive/trunk@68327 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/cwebdir/comm-w2c.ch')
-rw-r--r-- | Build/source/texk/web2c/cwebdir/comm-w2c.ch | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Build/source/texk/web2c/cwebdir/comm-w2c.ch b/Build/source/texk/web2c/cwebdir/comm-w2c.ch index 906003989f6..d37c02d23ce 100644 --- a/Build/source/texk/web2c/cwebdir/comm-w2c.ch +++ b/Build/source/texk/web2c/cwebdir/comm-w2c.ch @@ -328,39 +328,39 @@ else if (strlen(found_filename) < max_file_name_length) { @z @x - fputs("\n! Ambiguous prefix: matches <",stdout); + printf("%s","\n! Ambiguous prefix: matches <"); @y - fputs(_("\n! Ambiguous prefix: matches <"),stdout); + printf("%s",_("\n! Ambiguous prefix: matches <")); @z @x - fputs(">\n and <",stdout); + printf("%s",">\n and <"); @y - fputs(_(">\n and <"),stdout); + printf("%s",_(">\n and <")); @z @x - fputs("\n! New name is a prefix of <",stdout); + printf("%s","\n! New name is a prefix of <"); @y - fputs(_("\n! New name is a prefix of <"),stdout); + printf("%s",_("\n! New name is a prefix of <")); @z @x - fputs("\n! New name extends <",stdout); + printf("%s","\n! New name extends <"); @y - fputs(_("\n! New name extends <"),stdout); + printf("%s",_("\n! New name extends <")); @z @x - fputs("\n! Section name incompatible with <",stdout); + printf("%s","\n! Section name incompatible with <"); @y - fputs(_("\n! Section name incompatible with <"),stdout); + printf("%s",_("\n! Section name incompatible with <")); @z @x - fputs(">,\n which abbreviates <",stdout); + printf("%s",">,\n which abbreviates <"); @y - fputs(_(">,\n which abbreviates <"),stdout); + printf("%s",_(">,\n which abbreviates <")); @z @x |