]> git.eshelyaron.com Git - emacs.git/commitdiff
omit binary characters for tex
authorKarl Berry <karl@gnu.org>
Sat, 7 Apr 2007 21:53:41 +0000 (21:53 +0000)
committerKarl Berry <karl@gnu.org>
Sat, 7 Apr 2007 21:53:41 +0000 (21:53 +0000)
lispref/ChangeLog
lispref/text.texi

index f558894382388e2fbbea7229a2c568495d6f8d29..cc2c722d37d17ff6d676a3aec15a5f3a6044cdbb 100644 (file)
@@ -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.
index d8fe090711c316e2488b8a6d96eb0f01981c74e1..6bc68635f6c462cf76a9dea7bba45d648e57eb0d 100644 (file)
@@ -1741,11 +1741,21 @@ Adaptive Fill mode matches this regular expression against the text
 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