diff options
| author | Richard M. Stallman | 1997-06-18 20:26:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-06-18 20:26:21 +0000 |
| commit | b03ddefc2c060aba72849c1aa3cb3937d9f8db38 (patch) | |
| tree | a39504d8af2d6d26024d0c8f94178880bbd89b07 | |
| parent | 9af289f9c2fffdb85003cbaf3e890b9cb911b4e5 (diff) | |
| download | emacs-b03ddefc2c060aba72849c1aa3cb3937d9f8db38.tar.gz emacs-b03ddefc2c060aba72849c1aa3cb3937d9f8db38.zip | |
(fill-context-prefix): Fix previous change.
| -rw-r--r-- | lisp/textmodes/fill.el | 2 |
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) |