diff options
author | Karl Berry <karl@freefriends.org> | 2016-01-14 02:16:47 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-01-14 02:16:47 +0000 |
commit | 586cb4bcf9fac805b5b4cf49d509a1c49933dd84 (patch) | |
tree | 8a07e6986113ce5ee8d5c146839fff91bb219b42 /Build/source/build-aux | |
parent | dd9423a1b4208b950fa9843a68eb03ac3159febe (diff) |
/home/texlive/karl/Master/tlpkg/bin/tl-update-auto
git-svn-id: svn://tug.org/texlive/trunk@39380 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/build-aux')
-rwxr-xr-x | Build/source/build-aux/depcomp | 4 | ||||
-rwxr-xr-x | Build/source/build-aux/install-sh | 4 | ||||
-rw-r--r-- | Build/source/build-aux/texinfo.tex | 17 |
3 files changed, 19 insertions, 6 deletions
diff --git a/Build/source/build-aux/depcomp b/Build/source/build-aux/depcomp index fda2463f383..28ce42a9b03 100755 --- a/Build/source/build-aux/depcomp +++ b/Build/source/build-aux/depcomp @@ -1,7 +1,7 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2013-05-30.07; # UTC +scriptversion=2016-01-11.22; # UTC # Copyright (C) 1999-2015 Free Software Foundation, Inc. @@ -751,6 +751,6 @@ exit 0 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff --git a/Build/source/build-aux/install-sh b/Build/source/build-aux/install-sh index 0b0fdcbba69..0360b79e7d0 100755 --- a/Build/source/build-aux/install-sh +++ b/Build/source/build-aux/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2013-12-25.23; # UTC +scriptversion=2016-01-11.22; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -496,6 +496,6 @@ done # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff --git a/Build/source/build-aux/texinfo.tex b/Build/source/build-aux/texinfo.tex index 0dfc10f2ea8..936c32dc5f4 100644 --- a/Build/source/build-aux/texinfo.tex +++ b/Build/source/build-aux/texinfo.tex @@ -3,7 +3,7 @@ % Load plain if necessary, i.e., if running under initex. \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi % -\def\texinfoversion{2016-01-07.22} +\def\texinfoversion{2016-01-11.19} % % Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, @@ -9434,13 +9434,16 @@ directory should work if nowhere else does.} \else \XeTeXdefaultencoding "bytes" % For subsequent files to be read \XeTeXinputencoding "bytes" % Effective in texinfo.tex only +% Unfortunately, there seems to be no corresponding XeTeX command for +% output encoding. This is a problem for auxiliary index and TOC files. +% The only solution would be perhaps to write out @U{...} sequences in +% place of UTF-8 characters. \fi \ifx\luatexversion\thisisundefined \else \directlua{ local utf8_char, byte, gsub = unicode.utf8.char, string.byte, string.gsub - local function convert_char (char) return utf8_char(byte(char)) end @@ -9450,6 +9453,16 @@ local function convert_line (line) end callback.register("process_input_buffer", convert_line) + +local function convert_line_out (line) + local line_out = "" + for c in string.utfvalues(line) do + line_out = line_out .. string.char(c) + end + return line_out +end + +callback.register("process_output_buffer", convert_line_out) } \fi |