aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-06-18 20:26:21 +0000
committerRichard M. Stallman1997-06-18 20:26:21 +0000
commitb03ddefc2c060aba72849c1aa3cb3937d9f8db38 (patch)
treea39504d8af2d6d26024d0c8f94178880bbd89b07
parent9af289f9c2fffdb85003cbaf3e890b9cb911b4e5 (diff)
downloademacs-b03ddefc2c060aba72849c1aa3cb3937d9f8db38.tar.gz
emacs-b03ddefc2c060aba72849c1aa3cb3937d9f8db38.zip
(fill-context-prefix): Fix previous change.
-rw-r--r--lisp/textmodes/fill.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el
index 94182483066..9aa35449489 100644
--- a/lisp/textmodes/fill.el
+++ b/lisp/textmodes/fill.el
@@ -209,7 +209,7 @@ act as a paragraph-separator."
209 (if at-second 209 (if at-second
210 ;; If we get a fill prefix from the second line, 210 ;; If we get a fill prefix from the second line,
211 ;; make sure it or something compatible is on the first line too. 211 ;; make sure it or something compatible is on the first line too.
212 (and second-line-prefix 212 (and second-line-prefix first-line-prefix
213 (if (or (string-match (regexp-quote second-line-prefix) 213 (if (or (string-match (regexp-quote second-line-prefix)
214 first-line-prefix) 214 first-line-prefix)
215 (and (string-match "[ \t]" second-line-prefix) 215 (and (string-match "[ \t]" second-line-prefix)