changeset 18196:33db3bd19ab5

autoupdate
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 12 Jan 2016 12:53:28 -0800
parents 6ee445128d2a
children f566e38e01dc
files build-aux/compile build-aux/depcomp build-aux/install-sh build-aux/mdate-sh build-aux/texinfo.tex m4/codeset.m4 m4/gettext.m4 m4/iconv.m4 m4/intl.m4 m4/intldir.m4 m4/intlmacosx.m4 m4/lcmessage.m4 m4/nls.m4 m4/po.m4
diffstat 14 files changed, 35 insertions(+), 21 deletions(-) [+]
line wrap: on
line diff
--- a/build-aux/compile	Tue Jan 12 09:29:40 2016 -0800
+++ b/build-aux/compile	Tue Jan 12 12:53:28 2016 -0800
@@ -1,7 +1,7 @@
 #! /bin/sh
 # Wrapper for compilers which do not understand '-c -o'.
 
-scriptversion=2015-11-24.11; # UTC
+scriptversion=2016-01-11.22; # UTC
 
 # Copyright (C) 1999-2015 Free Software Foundation, Inc.
 # Written by Tom Tromey <tromey@cygnus.com>.
@@ -343,6 +343,6 @@
 # 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:
--- a/build-aux/depcomp	Tue Jan 12 09:29:40 2016 -0800
+++ b/build-aux/depcomp	Tue Jan 12 12:53:28 2016 -0800
@@ -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 @@
 # 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:
--- a/build-aux/install-sh	Tue Jan 12 09:29:40 2016 -0800
+++ b/build-aux/install-sh	Tue Jan 12 12:53:28 2016 -0800
@@ -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 @@
 # 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:
--- a/build-aux/mdate-sh	Tue Jan 12 09:29:40 2016 -0800
+++ b/build-aux/mdate-sh	Tue Jan 12 12:53:28 2016 -0800
@@ -1,7 +1,7 @@
 #!/bin/sh
 # Get modification time of a file or directory and pretty-print it.
 
-scriptversion=2010-08-21.06; # UTC
+scriptversion=2016-01-11.22; # UTC
 
 # Copyright (C) 1995-2015 Free Software Foundation, Inc.
 # written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, June 1995
@@ -219,6 +219,6 @@
 # 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:
--- a/build-aux/texinfo.tex	Tue Jan 12 09:29:40 2016 -0800
+++ b/build-aux/texinfo.tex	Tue Jan 12 12:53:28 2016 -0800
@@ -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 @@
 \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 @@
 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
 
--- a/m4/codeset.m4	Tue Jan 12 09:29:40 2016 -0800
+++ b/m4/codeset.m4	Tue Jan 12 12:53:28 2016 -0800
@@ -1,5 +1,6 @@
 # codeset.m4 serial 5 (gettext-0.18.2)
-dnl Copyright (C) 2000-2002, 2006, 2008-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 2000-2002, 2006, 2008-2014, 2016 Free Software Foundation,
+dnl Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
--- a/m4/gettext.m4	Tue Jan 12 09:29:40 2016 -0800
+++ b/m4/gettext.m4	Tue Jan 12 12:53:28 2016 -0800
@@ -1,5 +1,5 @@
 # gettext.m4 serial 67 (gettext-0.19.6)
-dnl Copyright (C) 1995-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 1995-2014, 2016 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
--- a/m4/iconv.m4	Tue Jan 12 09:29:40 2016 -0800
+++ b/m4/iconv.m4	Tue Jan 12 12:53:28 2016 -0800
@@ -1,5 +1,5 @@
 # iconv.m4 serial 19 (gettext-0.18.2)
-dnl Copyright (C) 2000-2002, 2007-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 2000-2002, 2007-2014, 2016 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
--- a/m4/intl.m4	Tue Jan 12 09:29:40 2016 -0800
+++ b/m4/intl.m4	Tue Jan 12 12:53:28 2016 -0800
@@ -1,5 +1,5 @@
 # intl.m4 serial 29 (gettext-0.19)
-dnl Copyright (C) 1995-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 1995-2014, 2016 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
--- a/m4/intldir.m4	Tue Jan 12 09:29:40 2016 -0800
+++ b/m4/intldir.m4	Tue Jan 12 12:53:28 2016 -0800
@@ -1,5 +1,5 @@
 # intldir.m4 serial 2 (gettext-0.18)
-dnl Copyright (C) 2006, 2009-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 2006, 2009-2014, 2016 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
--- a/m4/intlmacosx.m4	Tue Jan 12 09:29:40 2016 -0800
+++ b/m4/intlmacosx.m4	Tue Jan 12 12:53:28 2016 -0800
@@ -1,5 +1,5 @@
 # intlmacosx.m4 serial 5 (gettext-0.18.2)
-dnl Copyright (C) 2004-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 2004-2014, 2016 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
--- a/m4/lcmessage.m4	Tue Jan 12 09:29:40 2016 -0800
+++ b/m4/lcmessage.m4	Tue Jan 12 12:53:28 2016 -0800
@@ -1,6 +1,6 @@
 # lcmessage.m4 serial 7 (gettext-0.18.2)
-dnl Copyright (C) 1995-2002, 2004-2005, 2008-2014 Free Software Foundation,
-dnl Inc.
+dnl Copyright (C) 1995-2002, 2004-2005, 2008-2014, 2016 Free Software
+dnl Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
--- a/m4/nls.m4	Tue Jan 12 09:29:40 2016 -0800
+++ b/m4/nls.m4	Tue Jan 12 12:53:28 2016 -0800
@@ -1,6 +1,6 @@
 # nls.m4 serial 5 (gettext-0.18)
-dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014 Free Software Foundation,
-dnl Inc.
+dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software
+dnl Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
--- a/m4/po.m4	Tue Jan 12 09:29:40 2016 -0800
+++ b/m4/po.m4	Tue Jan 12 12:53:28 2016 -0800
@@ -1,5 +1,5 @@
 # po.m4 serial 24 (gettext-0.19)
-dnl Copyright (C) 1995-2014 Free Software Foundation, Inc.
+dnl Copyright (C) 1995-2014, 2016 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.