aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorPaul Eggert2019-10-11 18:23:47 -0700
committerPaul Eggert2019-10-11 18:24:19 -0700
commit4b60e0722d0a79751f345bd470d07db0d635aa28 (patch)
tree9ebcaa21ec5f08c0caafc7190daf34ed047f8e1f /doc/misc
parentf9d8babe6a28b19c781778c361e45b93f7a01f17 (diff)
downloademacs-4b60e0722d0a79751f345bd470d07db0d635aa28.tar.gz
emacs-4b60e0722d0a79751f345bd470d07db0d635aa28.zip
Update from Gnulib
This incorporates: 2019-10-11 Simplify and regularize regex use of ‘assert’ 2019-10-09 regex: omit debug assignment when not debugging 2019-10-09 regex: tell compiler there’s at most 256 arcs out 2019-10-09 regex: simplify by assuming C99 2019-10-09 regex: avoid copying of uninitialized storage 2019-09-29 fbufmode: Fix compilation error on glibc >= 2.28 systems 2019-09-28 Update comments that refer to POSIX 2019-09-23 Update URLs and associated text * doc/misc/texinfo.tex, lib/open.c, lib/regcomp.c: * lib/regex_internal.c, lib/regex_internal.h, lib/regexec.c: * lib/stdio-impl.h: Copy from Gnulib.
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/texinfo.tex13
1 files changed, 9 insertions, 4 deletions
diff --git a/doc/misc/texinfo.tex b/doc/misc/texinfo.tex
index df43c1e26ed..1ea515b2ae4 100644
--- a/doc/misc/texinfo.tex
+++ b/doc/misc/texinfo.tex
@@ -3,7 +3,7 @@
3% Load plain if necessary, i.e., if running under initex. 3% Load plain if necessary, i.e., if running under initex.
4\expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi 4\expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
5% 5%
6\def\texinfoversion{2019-09-20.22} 6\def\texinfoversion{2019-09-24.13}
7% 7%
8% Copyright 1985, 1986, 1988, 1990-2019 Free Software Foundation, Inc. 8% Copyright 1985, 1986, 1988, 1990-2019 Free Software Foundation, Inc.
9% 9%
@@ -3099,11 +3099,16 @@ end
3099\def\wordbefore{before} 3099\def\wordbefore{before}
3100\def\wordnone{none} 3100\def\wordnone{none}
3101 3101
3102% Allow a ragged right output to aid breaking long URL's. Putting stretch in 3102% Allow a ragged right output to aid breaking long URL's. There can
3103% between characters of the URL doesn't look good. 3103% be a break at the \allowbreak with no extra glue (if the existing stretch in
3104% the line is sufficent), a break at the \penalty100 with extra glue added
3105% at the end of the line, or no break at all here.
3106% Changing the value of the penalty and/or the amount of stretch affects how
3107% preferrable one choice is over the other.
3104\def\urefallowbreak{% 3108\def\urefallowbreak{%
3105 \hskip 0pt plus 4 em\relax
3106 \allowbreak 3109 \allowbreak
3110 \hskip 0pt plus 4 em\relax
3111 \penalty100
3107 \hskip 0pt plus -4 em\relax 3112 \hskip 0pt plus -4 em\relax
3108} 3113}
3109 3114