diff options
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/bibtex.ch | 10 |
2 files changed, 15 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index dba68646051..d1eb0016dae 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,8 @@ +2019-12-15 Karl Berry <karl@freefriends.org> + + * bibtex.ch (Open this .aux file [141]): if -terse, + only log the "A level-N auxiliary file" message, instead of print. + 2019-12-10 Hironori KITAGAWA <h_kitagawa2001@yahoo.co.jp> * ac/web2c.ac (etex, ptex, eptex, uptex, euptex, pdftex): use zlib. @@ -8409,6 +8414,7 @@ Tue Jan 7 16:09:55 1992 Karl Berry (karl at hayley) * bibtex.ch (10/main program): exit with bad status if history > warning_message. + Mon Feb 21 14:50:08 1994 Karl Berry (karl@cs.umb.edu) * Makefile.in: srcdir changes from simon. diff --git a/Build/source/texk/web2c/bibtex.ch b/Build/source/texk/web2c/bibtex.ch index 4b637d99d98..599b0ea312b 100644 --- a/Build/source/texk/web2c/bibtex.ch +++ b/Build/source/texk/web2c/bibtex.ch @@ -1024,7 +1024,7 @@ if (last_cite = max_cites) then end; @z -% [142] Don't pad with blanks, terminate with null. +% [141] Don't pad with blanks, terminate with null. % Don't use a path to search for subsidiary aux files, % but do check the directory of the main .aux file. % @@ -1049,6 +1049,14 @@ if (not kpse_in_name_ok(stringcast(name_of_file+1)) ) then @z +@x [still 141] Be silent unless verbose. +print ('A level-',aux_ptr:0,' auxiliary file: '); +print_aux_name; +@y +log_pr ('A level-',aux_ptr:0,' auxiliary file: '); +log_pr_aux_name; +@z + % [152] This goto gets turned into a setjmp/longjmp by ./convert -- % unfortunately, it is a nonlocal goto. ekrell@ulysses.att.com % implemented the conversion. |