summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-09-22 09:17:57 -0700
committerKarl Berry <karl@freefriends.org>2019-09-22 09:17:57 -0700
commitcb5185a539e681cbe26a6ee0de6f0f214d0ca5c0 (patch)
tree987f99e930e696f927a8d66ab3f98d81913f72f9
parentb81ec693dcb9c2343f477983c2c4aa8fa470cecd (diff)
downloadgnulib-cb5185a539e681cbe26a6ee0de6f0f214d0ca5c0.tar.gz
gnulib-cb5185a539e681cbe26a6ee0de6f0f214d0ca5c0.tar.bz2
autoupdate
-rw-r--r--build-aux/texinfo.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/build-aux/texinfo.tex b/build-aux/texinfo.tex
index 0d5e709dd0..df43c1e26e 100644
--- a/build-aux/texinfo.tex
+++ b/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{2019-09-08.12}
+\def\texinfoversion{2019-09-20.22}
%
% Copyright 1985, 1986, 1988, 1990-2019 Free Software Foundation, Inc.
%
@@ -1052,7 +1052,7 @@ where each line of input produces a line of output.}
tex.sprint(
string.format(string.char(0x5c) .. string.char(0x25) .. '03o' ..
string.char(0x5c) .. string.char(0x25) .. '03o',
- (c / 256), (c % 256)))
+ math.floor(c / 256), math.floor(c % 256)))
else
c = c - 0x10000
local c_hi = c / 1024 + 0xd800
@@ -1062,8 +1062,8 @@ where each line of input produces a line of output.}
string.char(0x5c) .. string.char(0x25) .. '03o' ..
string.char(0x5c) .. string.char(0x25) .. '03o' ..
string.char(0x5c) .. string.char(0x25) .. '03o',
- (c_hi / 256), (c_hi % 256),
- (c_lo / 256), (c_lo % 256)))
+ math.floor(c_hi / 256), math.floor(c_hi % 256),
+ math.floor(c_lo / 256), math.floor(c_lo % 256)))
end
end
end

Return to:

Send suggestions and report system problems to the System administrator.