diff options
| -rw-r--r-- | lisp/textmodes/fill.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index af97ca83e6e..514350119fe 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -89,7 +89,8 @@ reinserts the fill prefix in each resulting line." | |||
| 89 | (defcustom adaptive-fill-regexp | 89 | (defcustom adaptive-fill-regexp |
| 90 | ;; Added `!' for doxygen comments starting with `//!' or `/*!'. | 90 | ;; Added `!' for doxygen comments starting with `//!' or `/*!'. |
| 91 | ;; Added `%' for TeX comments. | 91 | ;; Added `%' for TeX comments. |
| 92 | (purecopy "[ \t]*\\([-!|#%;>*,A7$,1s"s#sC$,2"F(B]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*") | 92 | ;; RMS: deleted the code to match `1.' and `(1)'. |
| 93 | "[ \t]*\\([-!|#%;>*,A7$,1s"s#sC$,2"F(B]+[ \t]*\\)*" | ||
| 93 | "*Regexp to match text at start of line that constitutes indentation. | 94 | "*Regexp to match text at start of line that constitutes indentation. |
| 94 | If Adaptive Fill mode is enabled, a prefix matching this pattern | 95 | If Adaptive Fill mode is enabled, a prefix matching this pattern |
| 95 | on the first and second lines of a paragraph is used as the | 96 | on the first and second lines of a paragraph is used as the |