diff options
| author | Luc Teirlinck | 2006-03-11 22:41:41 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-03-11 22:41:41 +0000 |
| commit | 3b42af63b15ff2fdc7242f450a327bfacb2cbdb1 (patch) | |
| tree | 6af093f6c2ffa00f2f62c1f37fcbc640564ea0af | |
| parent | 2c676341953c28fb8194b197966d90e2277fe920 (diff) | |
| download | emacs-3b42af63b15ff2fdc7242f450a327bfacb2cbdb1.tar.gz emacs-3b42af63b15ff2fdc7242f450a327bfacb2cbdb1.zip | |
(Adaptive Fill): Fix Texinfo usage.
| -rw-r--r-- | lispref/text.texi | 4 |
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 | |||
| 1716 | starting after the left margin whitespace (if any) on a line; the | 1716 | starting after the left margin whitespace (if any) on a line; the |
| 1717 | characters it matches are that line's candidate for the fill prefix. | 1717 | characters 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 |
| 1720 | default value. This matches a number enclosed in parentheses or | 1720 | default value. This matches a number enclosed in parentheses or |
| 1721 | followed by a period, or certain punctuation characters, or any | 1721 | followed by a period, or certain punctuation characters, or any |
| 1722 | sequence of these intermingled with whitespace. In particular, it | 1722 | sequence of these intermingled with whitespace. In particular, it |
| @@ -1731,7 +1731,7 @@ prefix: the candidate must match this regular expression, or match | |||
| 1731 | replaces the candidate with a string of spaces ``of the same width'' | 1731 | replaces the candidate with a string of spaces ``of the same width'' |
| 1732 | as it. | 1732 | as it. |
| 1733 | 1733 | ||
| 1734 | The default value of this variable is @w{@samp{"\\`[ \t]*\\'"}}, which | 1734 | The default value of this variable is @w{@code{"\\`[ \t]*\\'"}}, which |
| 1735 | matches only a string of whitespace. The effect of this default is to | 1735 | matches only a string of whitespace. The effect of this default is to |
| 1736 | force the fill prefixes found in one-line paragraphs always to be pure | 1736 | force the fill prefixes found in one-line paragraphs always to be pure |
| 1737 | whitespace. | 1737 | whitespace. |