changeset 77045:281faae44c48

omit binary characters for tex
author Karl Berry <karl@gnu.org>
date Sat, 07 Apr 2007 21:53:41 +0000
parents e0a720fbf325
children dd81fcb0ef06
files lispref/ChangeLog lispref/text.texi
diffstat 2 files changed, 21 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/ChangeLog	Sat Apr 07 21:53:39 2007 +0000
+++ b/lispref/ChangeLog	Sat Apr 07 21:53:41 2007 +0000
@@ -1,3 +1,9 @@
+2007-04-07  Karl Berry  <karl@gnu.org>
+
+	* text.texi (Adaptive Fill) [@iftex]: Omit binary characters in
+	adaptive-fill-regexp's value, since they are not in the standard
+	TeX fonts.
+
 2007-04-07  Herbert Euler  <herberteuler@hotmail.com>
 
 	* display.texi (Defining Faces): Fix example.
--- a/lispref/text.texi	Sat Apr 07 21:53:39 2007 +0000
+++ b/lispref/text.texi	Sat Apr 07 21:53:41 2007 +0000
@@ -1741,11 +1741,21 @@
 starting after the left margin whitespace (if any) on a line; the
 characters it matches are that line's candidate for the fill prefix.
 
-@w{@code{"[ \t]*\\([-!|#%;>*·•‣⁃◦]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}} is the
-default value.  This matches a number enclosed in parentheses or
-followed by a period, or certain punctuation characters, or any
-sequence of these intermingled with whitespace.  In particular, it
-matches a sequence of whitespace, possibly empty.
+@c omit binary characters not in the standard TeX fonts, to avoid warnings.
+@iftex
+@w{@code{"[ \t]*\\([-!|#%;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}}
+@end iftex
+@ifnottex
+@w{@code{"[ \t]*\\([-!|#%;>*·•‣⁃◦]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}}
+@end ifnottex
+is the default value.
+@iftex
+(A few control characters are in the default value that are not visible here.)
+@end iftex
+This matches a number enclosed in parentheses or followed by a period,
+or certain punctuation characters, or any sequence of these
+intermingled with whitespace.  In particular, it matches a sequence of
+whitespace, possibly empty.
 @end defopt
 
 @defopt adaptive-fill-first-line-regexp