From b27e64e66554cb501eecf94c03ed73e093de1bb6 Mon Sep 17 00:00:00 2001 From: Kai Grossjohann Date: Sat, 26 Jul 2003 09:57:32 +0000 Subject: [PATCH] (fill-flowed): Empty lines separate paragraphs even if the preceding line ends with a soft break. Tiny patch from Mark Thomas . --- lisp/ChangeLog | 6 ++++++ lisp/flow-fill.el | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f3b8d5ceb..8d61fb449 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2003-07-26 Kai Gro,A_(Bjohann + + * flow-fill.el (fill-flowed): Empty lines separate paragraphs + even if the preceding line ends with a soft break. Tiny patch + from Mark Thomas . + 2003-07-25 Teodor Zlatanov * spam.el (spam-use-regex-body, spam-regex-body-spam) diff --git a/lisp/flow-fill.el b/lisp/flow-fill.el index 15712a536..43f563ef2 100644 --- a/lisp/flow-fill.el +++ b/lisp/flow-fill.el @@ -127,7 +127,7 @@ RFC 2646 suggests 66 characters for readability." (save-excursion (unless (eobp) (forward-char 1) - (looking-at (format "^\\(%s\\)\\([^>]\\)" + (looking-at (format "^\\(%s\\)\\([^>\n\r]\\)" (or quote " ?")))))) (save-excursion (replace-match (if (string= (match-string 2) " ") -- 2.25.1