diff options
author | Karl Berry <karl@freefriends.org> | 2019-09-20 21:33:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-09-20 21:33:07 +0000 |
commit | 1e06fcc402b29940f4d8eafaca626a048d017e08 (patch) | |
tree | af5152bee7317790de66b6c0cb616304f3c48ebe /Build/source | |
parent | 775ce49002b475687e665704c4a3cab9740c12a6 (diff) |
xindex (20sep19)
git-svn-id: svn://tug.org/texlive/trunk@52134 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl | 16 | ||||
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/xindex/xindex.lua | 12 |
2 files changed, 15 insertions, 13 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl index f168064c175..fc6c96906ed 100755 --- a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl +++ b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl @@ -1,12 +1,12 @@ #!/usr/bin/env perl -# $Id: tlmgr.pl 52045 2019-09-07 05:32:39Z preining $ +# $Id: tlmgr.pl 52123 2019-09-19 18:18:41Z karl $ # # Copyright 2008-2019 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. -my $svnrev = '$Revision: 52045 $'; -my $datrev = '$Date: 2019-09-07 07:32:39 +0200 (Sat, 07 Sep 2019) $'; +my $svnrev = '$Revision: 52123 $'; +my $datrev = '$Date: 2019-09-19 20:18:41 +0200 (Thu, 19 Sep 2019) $'; my $tlmgrrevision; my $tlmgrversion; my $prg; @@ -6948,14 +6948,14 @@ sub setup_one_remotetlpdb { = TeXLive::TLCrypto::verify_checksum($loc_copy_of_remote_tlpdb, $path); if ($ret == $VS_CONNECTION_ERROR) { info(<<END_NO_INTERNET); -No connection to the internet. Unable to download the checksum of the remote TeX Live database, -but found a local copy so using that. +but found a local copy, so using that. -You may want to try specifying an explicit or different CTAN mirror; +You may want to try specifying an explicit or different CTAN mirror, +or maybe you need to specify proxy information if you're behind a firewall; see the information and examples for the -repository option at https://tug.org/texlive/doc/install-tl.html -(or in the output of install-tl --help). +(and in the output of install-tl --help). END_NO_INTERNET # above text duplicated in install-tl @@ -9908,7 +9908,7 @@ This script and its documentation were written for the TeX Live distribution (L<https://tug.org/texlive>) and both are licensed under the GNU General Public License Version 2 or later. -$Id: tlmgr.pl 52045 2019-09-07 05:32:39Z preining $ +$Id: tlmgr.pl 52123 2019-09-19 18:18:41Z karl $ =cut # test HTML version: pod2html --cachedir=/tmp tlmgr.pl >/tmp/tlmgr.html diff --git a/Build/source/texk/texlive/linked_scripts/xindex/xindex.lua b/Build/source/texk/texlive/linked_scripts/xindex/xindex.lua index 74f4edaa21f..ee891e052fa 100755 --- a/Build/source/texk/texlive/linked_scripts/xindex/xindex.lua +++ b/Build/source/texk/texlive/linked_scripts/xindex/xindex.lua @@ -8,7 +8,7 @@ ----------------------------------------------------------------------- xindex = xindex or { } - local version = 0.13 + local version = 0.14 xindex.version = version --xindex.self = "xindex" @@ -159,10 +159,12 @@ writeLog(2," ... done\n",0) local esc_char = args.escapechar writeLog(2,"Escapechar = "..esc_char.."\n",1) escape_chars = { -- by default " is the escape char - {esc_char..'"', '//escapedquote//', '\\"{}' }, - {esc_char..'@', '//escapedat//', '@' }, - {esc_char..'|', '//escapedvert//', "|" }, - {esc_char..'!', '//scapedexcl//', '!' } + {esc_char..'"', '//escapedquote//', '\\"{}' }, + {esc_char..'@', '//escapedat//', '@' }, + {esc_char..'|', '//escapedvert//', '|' }, + {esc_char..'!', '//scapedexcl//', '!' }, + {esc_char..'(', '//escapedparenleft//', '(' }, + {esc_char..')', '//escapedparenright//',')' } } language = string.lower(args["language"]) |