]> git.eshelyaron.com Git - emacs.git/commitdiff
(fill-individual-paragraphs): Don't include
authorRichard M. Stallman <rms@gnu.org>
Mon, 8 Sep 1997 06:47:05 +0000 (06:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 8 Sep 1997 06:47:05 +0000 (06:47 +0000)
paragraph-separate lines in any paragraph; just skip them.

lisp/textmodes/fill.el

index e7fb73f8285a8436fddf80aa4830596c1354354e..5fd50ecc52197d0ddf4a4971c5fdfd1938badf88 100644 (file)
@@ -939,7 +939,13 @@ MAIL-FLAG for a mail message, i. e. don't fill header lines."
              (forward-line 1))))
       (narrow-to-region (point) max)
       ;; Loop over paragraphs.
-      (while (progn (skip-chars-forward " \t\n") (not (eobp)))
+      (while (progn
+              ;; Skip over all paragraph-separating lines
+              ;; so as to not include them in any paragraph.
+               (while (progn (move-to-left-margin)
+                            (and (not (eobp)) (looking-at paragraph-separate)))
+                 (forward-line 1))
+               (skip-chars-forward " \t\n") (not (eobp)))
        (move-to-left-margin)
        (let ((start (point))
              fill-prefix fill-prefix-regexp)