diff options
Diffstat (limited to 'Master/texmf-dist/scripts')
4 files changed, 14 insertions, 11 deletions
diff --git a/Master/texmf-dist/scripts/glossaries/glossaries.l2h b/Master/texmf-dist/scripts/glossaries/glossaries.l2h index 9afdcbe9f22..42abdcd5dec 100644 --- a/Master/texmf-dist/scripts/glossaries/glossaries.l2h +++ b/Master/texmf-dist/scripts/glossaries/glossaries.l2h @@ -1,6 +1,6 @@ # File : glossaries.l2h # Author : Nicola L.C. Talbot -# Version : 4.51 (2022-11-02) +# Version : 4.55 (2024-11-01) # Description : LaTeX2HTML (limited!) implementation of glossaries # package. Note that not all the glossaries.sty # macros have been implemented. @@ -17,7 +17,7 @@ # This is a LaTeX2HTML style implementing the glossaries package, and # is distributed as part of that package. # -# Copyright 2007-2022 Nicola L.C. Talbot +# Copyright 2007-2024 Nicola L.C. Talbot # This work may be distributed and/or modified under the # conditions of the LaTeX Project Public License, either version 1.3 # of this license of (at your option) any later version. diff --git a/Master/texmf-dist/scripts/glossaries/makeglossaries b/Master/texmf-dist/scripts/glossaries/makeglossaries index 76ab02a07d6..301d53c7c7d 100755 --- a/Master/texmf-dist/scripts/glossaries/makeglossaries +++ b/Master/texmf-dist/scripts/glossaries/makeglossaries @@ -2,13 +2,13 @@ # File : makeglossaries # Author : Nicola Talbot -# Version : 4.54 +# Version : 4.55 # Description: simple Perl script that calls makeindex or xindy. # Intended for use with "glossaries.sty" (saves having to remember # all the various switches) # This file is distributed as part of the glossaries LaTeX package. -# Copyright 2007-2023 Nicola L.C. Talbot +# Copyright 2007-2024 Nicola L.C. Talbot # This work may be distributed and/or modified under the # conditions of the LaTeX Project Public License, either version 1.3 # of this license or any later version. @@ -31,10 +31,10 @@ # glossaries-babel.sty, glossaries-polyglossia.sty, glossaries.l2h. # Also makeglossaries and makeglossaries-lite.lua. -my $version="4.54 (2024-04-03)"; +my $version="4.55 (2024-11-01)"; # History: -# v4.51 - v4.54: +# v4.51 - v4.55: # * No change. (Version number updated in line with glossaries.sty) # v4.50: # * Added -e (don't fix encap clashes) @@ -119,14 +119,14 @@ my $version="4.54 (2024-04-03)"; # * Create an empty output file if the input file is empty # without calling xindy/makeindex # v1.7 (2009-09-23) : -# * Issue warning rather than error when empty/non existant file +# * Issue warning rather than error when empty/non existent file # checks fail # v1.6 (2009-05-24) : # * main glossary no longer automatically added # (only added if information in aux file) # * if file extension is specified, check added to ensure it # corresponds to a known glossary extension. -# * added file existance test and file empty test +# * added file existence test and file empty test # v1.5 (2008-12-26) : # * added support for xindy # * picks up ordering information from aux file diff --git a/Master/texmf-dist/scripts/glossaries/makeglossaries-lite.lua b/Master/texmf-dist/scripts/glossaries/makeglossaries-lite.lua index 86f10a948e6..c4ae9e5e443 100755 --- a/Master/texmf-dist/scripts/glossaries/makeglossaries-lite.lua +++ b/Master/texmf-dist/scripts/glossaries/makeglossaries-lite.lua @@ -14,7 +14,7 @@ use the Perl makeglossaries script. This file is distributed as part of the glossaries LaTeX package. - Copyright 2015-2023 Nicola L.C. Talbot + Copyright 2015-2024 Nicola L.C. Talbot This work may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 of this license or any later version. @@ -36,7 +36,7 @@ Also makeglossaries and makeglossaries-lite.lua. History: - * 4.48 - 4.54: + * 4.48 - 4.55: - no change. * 4.47: - Added hybrid instructions if record option detected but not \makeglossaries @@ -70,7 +70,7 @@ - changed first line from lua to texlua --]] -thisversion = "4.54 (2024-04-03)" +thisversion = "4.55 (2024-11-01)" quiet = false dryrun = false diff --git a/Master/texmf-dist/scripts/texlive/extractbb.lua b/Master/texmf-dist/scripts/texlive/extractbb.lua index a1bccf55b54..f8f994946d0 100755 --- a/Master/texmf-dist/scripts/texlive/extractbb.lua +++ b/Master/texmf-dist/scripts/texlive/extractbb.lua @@ -225,6 +225,9 @@ end for i = 1, #script_args do -- We use a numeric iterator here to avoid ``arg[-1]'' and ``arg[0]''. local this_arg = script_args[i] + if os.type == 'windows' then + this_arg = '"'..this_arg..'"' + end insert(target_args, this_arg) -- Show version information |