aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Berry2007-04-07 21:53:41 +0000
committerKarl Berry2007-04-07 21:53:41 +0000
commit687a72728bea0789f4f166e1f1041a1176b7be57 (patch)
tree282937d208e5c85bbaeaf7a3550da092d1da8020
parent109eecc05898a604124d1f5ce60ad43c01c2a52e (diff)
downloademacs-687a72728bea0789f4f166e1f1041a1176b7be57.tar.gz
emacs-687a72728bea0789f4f166e1f1041a1176b7be57.zip
omit binary characters for tex
-rw-r--r--lispref/ChangeLog6
-rw-r--r--lispref/text.texi20
2 files changed, 21 insertions, 5 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index f5588943823..cc2c722d37d 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,9 @@
12007-04-07 Karl Berry <karl@gnu.org>
2
3 * text.texi (Adaptive Fill) [@iftex]: Omit binary characters in
4 adaptive-fill-regexp's value, since they are not in the standard
5 TeX fonts.
6
12007-04-07 Herbert Euler <herberteuler@hotmail.com> 72007-04-07 Herbert Euler <herberteuler@hotmail.com>
2 8
3 * display.texi (Defining Faces): Fix example. 9 * display.texi (Defining Faces): Fix example.
diff --git a/lispref/text.texi b/lispref/text.texi
index d8fe090711c..6bc68635f6c 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -1741,11 +1741,21 @@ Adaptive Fill mode matches this regular expression against the text
1741starting after the left margin whitespace (if any) on a line; the 1741starting after the left margin whitespace (if any) on a line; the
1742characters it matches are that line's candidate for the fill prefix. 1742characters it matches are that line's candidate for the fill prefix.
1743 1743
1744@w{@code{"[ \t]*\\([-!|#%;>*·•‣⁃◦]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}} is the 1744@c omit binary characters not in the standard TeX fonts, to avoid warnings.
1745default value. This matches a number enclosed in parentheses or 1745@iftex
1746followed by a period, or certain punctuation characters, or any 1746@w{@code{"[ \t]*\\([-!|#%;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}}
1747sequence of these intermingled with whitespace. In particular, it 1747@end iftex
1748matches a sequence of whitespace, possibly empty. 1748@ifnottex
1749@w{@code{"[ \t]*\\([-!|#%;>*·•‣⁃◦]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}}
1750@end ifnottex
1751is the default value.
1752@iftex
1753(A few control characters are in the default value that are not visible here.)
1754@end iftex
1755This matches a number enclosed in parentheses or followed by a period,
1756or certain punctuation characters, or any sequence of these
1757intermingled with whitespace. In particular, it matches a sequence of
1758whitespace, possibly empty.
1749@end defopt 1759@end defopt
1750 1760
1751@defopt adaptive-fill-first-line-regexp 1761@defopt adaptive-fill-first-line-regexp