1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

(fill-individual-paragraphs): Advance 1 line in inner loop.

This commit is contained in:
Richard M. Stallman 1995-11-14 23:28:24 +00:00
parent 94f62922fa
commit c62861749e

View File

@ -787,17 +787,18 @@ MAIL-FLAG for a mail message, i. e. don't fill header lines."
(save-excursion (skip-chars-forward " \t")
(point))))
fill-prefix-regexp (regexp-quote fill-prefix)))
(move-to-left-margin 1)
(forward-line 1)
(move-to-left-margin)
;; Now stop the loop if end of paragraph.
(and (not (eobp))
(if fill-individual-varying-indent
;; If this line is a separator line, with or
;; without prefix, end the paragraph.
(and
(not (looking-at paragraph-separate))
(save-excursion
(not (and (looking-at fill-prefix-regexp)
(progn (forward-char (length fill-prefix))
(not (looking-at paragraph-separate))
(save-excursion
(not (and (looking-at fill-prefix-regexp)
(progn (forward-char (length fill-prefix))
(looking-at paragraph-separate))))))
;; If this line has more or less indent
;; than the fill prefix wants, end the paragraph.