diff options
author | Andreas Scherer <andreas_tex@freenet.de> | 2020-02-01 18:48:48 +0000 |
---|---|---|
committer | Andreas Scherer <andreas_tex@freenet.de> | 2020-02-01 18:48:48 +0000 |
commit | 22cb4622b403ec9e42484b7af858243a417e2d12 (patch) | |
tree | 78574bacc0c6deaf9958b8970824ef6cc4126e32 /Build/source/texk | |
parent | f9a86d91264d68326b089b4e08e421ee03663185 (diff) |
[CWEB] Fix verbosity bug in (upstream) ctangle.
git-svn-id: svn://tug.org/texlive/trunk@53621 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/ctangleboot.cin | 2 | ||||
-rw-r--r-- | Build/source/texk/web2c/cwebdir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/cwebdir/ctang-w2c.ch | 2 | ||||
-rw-r--r-- | Build/source/texk/web2c/man/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/man/ctwill.man | 2 | ||||
-rw-r--r-- | Build/source/texk/web2c/man/cweb.man | 2 |
7 files changed, 17 insertions, 4 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index f635fac4231..4298adc3392 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,7 @@ +2019-01-06 Andreas Scherer <https://ascherer.github.io> + + * ctangleboot.cin: Regenerate after verbosity bugfix. + 2020-01-16 Karl Berry <karl@freefriends.org> * doc/web2c.texi: 2020. diff --git a/Build/source/texk/web2c/ctangleboot.cin b/Build/source/texk/web2c/ctangleboot.cin index 21b3cf5c6cb..e6c504fe49d 100644 --- a/Build/source/texk/web2c/ctangleboot.cin +++ b/Build/source/texk/web2c/ctangleboot.cin @@ -814,7 +814,7 @@ sprint_section_name(output_file_name,*an_output_file); if((C_file= fopen(check_file_name,"wb"))==NULL) fatal(_("! Cannot open output file "),check_file_name); -printf("\n(%s)",output_file_name);update_terminal; +if(show_progress){printf("\n(%s)",output_file_name);update_terminal;} cur_line= 1; stack_ptr= stack+1; cur_name= (*an_output_file); diff --git a/Build/source/texk/web2c/cwebdir/ChangeLog b/Build/source/texk/web2c/cwebdir/ChangeLog index 4785415c8a7..012f317b23b 100644 --- a/Build/source/texk/web2c/cwebdir/ChangeLog +++ b/Build/source/texk/web2c/cwebdir/ChangeLog @@ -1,3 +1,7 @@ +2020-02-01 Andreas Scherer <https://ascherer.github.io> + + * ctang-w2c.ch: Fix verbosity bug in ctangle. + 2019-05-29 Andreas Scherer <https://ascherer.github.io> * comm-w2c.ch, comm-w2c.h: Minor changes. diff --git a/Build/source/texk/web2c/cwebdir/ctang-w2c.ch b/Build/source/texk/web2c/cwebdir/ctang-w2c.ch index c525c88bd37..9f8136d9ac2 100644 --- a/Build/source/texk/web2c/cwebdir/ctang-w2c.ch +++ b/Build/source/texk/web2c/cwebdir/ctang-w2c.ch @@ -315,7 +315,7 @@ for (an_output_file=end_output_files; an_output_file>cur_out_file;) { if((C_file=fopen(check_file_name,"wb"))==NULL) fatal(_("! Cannot open output file "),check_file_name); @.Cannot open output file@> - printf("\n(%s)",output_file_name); update_terminal; + if (show_progress) { printf("\n(%s)",output_file_name); update_terminal; } cur_line=1; stack_ptr=stack+1; cur_name= (*an_output_file); diff --git a/Build/source/texk/web2c/man/ChangeLog b/Build/source/texk/web2c/man/ChangeLog index 14985dcb577..ae88b893d23 100644 --- a/Build/source/texk/web2c/man/ChangeLog +++ b/Build/source/texk/web2c/man/ChangeLog @@ -1,3 +1,8 @@ +2020-02-01 Andreas Scherer <https://ascherer.github.io> + + * cweb.man, + * ctwill.man: Regenerate manpages with Pandoc 2.9.1.1. + 2019-12-07 Andreas Scherer <https://ascherer.github.io> * cweb.man, diff --git a/Build/source/texk/web2c/man/ctwill.man b/Build/source/texk/web2c/man/ctwill.man index 019b8c387db..b5e8744640c 100644 --- a/Build/source/texk/web2c/man/ctwill.man +++ b/Build/source/texk/web2c/man/ctwill.man @@ -1,4 +1,4 @@ -.\" Automatically generated by Pandoc 2.8.1 +.\" Automatically generated by Pandoc 2.9.1.1 .\" .TH "CTWILL" "1" "December 7, 2019" "Web2c @VERSION@" "General Commands Manual" .hy diff --git a/Build/source/texk/web2c/man/cweb.man b/Build/source/texk/web2c/man/cweb.man index ae1cd57e11c..37cb7456db3 100644 --- a/Build/source/texk/web2c/man/cweb.man +++ b/Build/source/texk/web2c/man/cweb.man @@ -1,4 +1,4 @@ -.\" Automatically generated by Pandoc 2.8.1 +.\" Automatically generated by Pandoc 2.9.1.1 .\" .TH "CWEB" "1" "December 7, 2019" "Web2c @VERSION@" "General Commands Manual" .hy |