diff options
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/man/man1/texlogsieve.1 | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/man/man1/texlogsieve.man1.pdf | bin | 41517 -> 41517 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/support/texlogsieve/texlogsieve.pdf | bin | 58436 -> 58593 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/support/texlogsieve/texlogsieve.tex | 7 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/texlogsieve/texlogsieve | 7 |
5 files changed, 10 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/man/man1/texlogsieve.1 b/Master/texmf-dist/doc/man/man1/texlogsieve.1 index d386ebd7ff8..f6d47eef13f 100644 --- a/Master/texmf-dist/doc/man/man1/texlogsieve.1 +++ b/Master/texmf-dist/doc/man/man1/texlogsieve.1 @@ -1,4 +1,4 @@ -.TH TEXLOGSIEVE "1" "March 2022" "texlogsieve 1.1.1" "User Commands" +.TH TEXLOGSIEVE "1" "March 2022" "texlogsieve 1.1.2" "User Commands" .SH NAME diff --git a/Master/texmf-dist/doc/man/man1/texlogsieve.man1.pdf b/Master/texmf-dist/doc/man/man1/texlogsieve.man1.pdf Binary files differindex 3d7ac3d9347..1a71327d76d 100644 --- a/Master/texmf-dist/doc/man/man1/texlogsieve.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/texlogsieve.man1.pdf diff --git a/Master/texmf-dist/doc/support/texlogsieve/texlogsieve.pdf b/Master/texmf-dist/doc/support/texlogsieve/texlogsieve.pdf Binary files differindex 1e56d8a04e3..b8fcee8d52f 100644 --- a/Master/texmf-dist/doc/support/texlogsieve/texlogsieve.pdf +++ b/Master/texmf-dist/doc/support/texlogsieve/texlogsieve.pdf diff --git a/Master/texmf-dist/doc/support/texlogsieve/texlogsieve.tex b/Master/texmf-dist/doc/support/texlogsieve/texlogsieve.tex index b0530874089..38e179285d1 100644 --- a/Master/texmf-dist/doc/support/texlogsieve/texlogsieve.tex +++ b/Master/texmf-dist/doc/support/texlogsieve/texlogsieve.tex @@ -73,13 +73,14 @@ \changes{1.1.0}{2022/03/04}{Print warning in the summary when there are error messages} \changes{1.1.0}{2022/03/04}{Do not lose messages if the file is truncated} -\changes{1.1.1}{2022/03/05}{Fix error in scope variable} +\changes{1.1.1}{2022/03/05}{Fix error in variable scope} +\changes{1.1.2}{2022/03/14}{Fix bug unwrapping lines starting with ``]''} \begin{document} \title{\textsf{texlogsieve}:\thanks{This document -corresponds to \textsf{texlogsieve}~1.1.1, -dated~2022-03-05.}\\[.3\baselineskip] +corresponds to \textsf{texlogsieve}~1.1.2, +dated~2022-03-14.}\\[.3\baselineskip] {\normalsize(yet another program to)\\[-.6\baselineskip]} {\large filter and summarize \LaTeX\ log files} } diff --git a/Master/texmf-dist/scripts/texlogsieve/texlogsieve b/Master/texmf-dist/scripts/texlogsieve/texlogsieve index 206387c8e6c..d1917ff99ea 100755 --- a/Master/texmf-dist/scripts/texlogsieve/texlogsieve +++ b/Master/texmf-dist/scripts/texlogsieve/texlogsieve @@ -1002,7 +1002,7 @@ Options: --version if vars.version then - print("texlogsieve 1.1.1") + print("texlogsieve 1.1.2") print("Copyright (C) 2021, 2022 Nelson Lago <lago@ime.usp.br>") print("License GPLv3+: GNU GPL version 3 or later " .. "<https://gnu.org/licenses/gpl.html>.") @@ -2544,6 +2544,7 @@ beginningOfLineDebugStringsHandler.patterns = { '^%s*restricted system commands enabled%.', '^%s*entering extended mode', '^%s*restricted \\write18 enabled%.', + '^%s*\\write18 enabled%.', '^%s*%%%&%-line parsing enabled%.', -- Two diferent ways of saying "**jobname": @@ -2586,12 +2587,14 @@ beginningOfLineDebugStringsHandler.patterns = { -- there may be dots in the path, so we need to -- anchor the final dot to the end of the line '^luaotfload | conf : Root cache directory is "?[^"]-"?%.$', + '^luaotfload | db : Font names database loaded from .-%.luc%.gz', '^luaotfload | db : Font names database loaded from .-%.luc', '^luaotfload | cache : Lookup cache loaded from .-%.luc%.', '^luaotfload | main : initialization completed in [%d%.]+ seconds', '^Lua%-only attribute.-=%s*%S+', "^Inserting %b`' at position .- in %b`'%.", + "^Removing +%b`' from %b`'%.", "^For additional information on amsmath, use the `%?' option%.", @@ -3725,7 +3728,7 @@ function closeSquareBracketHandler:canDoit(position) if position == 0 then return true, {first = first} end local linenum = 0 - local pending = openFiles:size() + local pending = shipouts:size() local unpaired = 0 while linenum < position do |