aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2006-03-11 22:41:41 +0000
committerLuc Teirlinck2006-03-11 22:41:41 +0000
commit3b42af63b15ff2fdc7242f450a327bfacb2cbdb1 (patch)
tree6af093f6c2ffa00f2f62c1f37fcbc640564ea0af
parent2c676341953c28fb8194b197966d90e2277fe920 (diff)
downloademacs-3b42af63b15ff2fdc7242f450a327bfacb2cbdb1.tar.gz
emacs-3b42af63b15ff2fdc7242f450a327bfacb2cbdb1.zip
(Adaptive Fill): Fix Texinfo usage.
-rw-r--r--lispref/text.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/text.texi b/lispref/text.texi
index 7b384033c11..c68a55bedc7 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -1716,7 +1716,7 @@ Adaptive Fill mode matches this regular expression against the text
1716starting after the left margin whitespace (if any) on a line; the 1716starting after the left margin whitespace (if any) on a line; the
1717characters it matches are that line's candidate for the fill prefix. 1717characters it matches are that line's candidate for the fill prefix.
1718 1718
1719@w{@samp{"[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}} is the 1719@w{@code{"[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}} is the
1720default value. This matches a number enclosed in parentheses or 1720default value. This matches a number enclosed in parentheses or
1721followed by a period, or certain punctuation characters, or any 1721followed by a period, or certain punctuation characters, or any
1722sequence of these intermingled with whitespace. In particular, it 1722sequence of these intermingled with whitespace. In particular, it
@@ -1731,7 +1731,7 @@ prefix: the candidate must match this regular expression, or match
1731replaces the candidate with a string of spaces ``of the same width'' 1731replaces the candidate with a string of spaces ``of the same width''
1732as it. 1732as it.
1733 1733
1734The default value of this variable is @w{@samp{"\\`[ \t]*\\'"}}, which 1734The default value of this variable is @w{@code{"\\`[ \t]*\\'"}}, which
1735matches only a string of whitespace. The effect of this default is to 1735matches only a string of whitespace. The effect of this default is to
1736force the fill prefixes found in one-line paragraphs always to be pure 1736force the fill prefixes found in one-line paragraphs always to be pure
1737whitespace. 1737whitespace.