From aea2e14ce538c98ccdbba633d428a8ca4af6e240 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 23 Dec 1993 03:47:45 +0000 Subject: [PATCH] (fill-region-as-paragraph): Do allow breaking line at a period followed by two spaces, in the case where we are insisting on having at least one complete word. --- lisp/textmodes/fill.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index bbe44f3d6fe..3ef81b87e1c 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el @@ -179,7 +179,8 @@ From program, pass args FROM, TO and JUSTIFY-FLAG." (or first (and (not (bobp)) (save-excursion (forward-char -1) - (looking-at "\\. "))))) + (looking-at "\\. ") + (not (looking-at "\\. ")))))) (skip-chars-forward " ") (skip-chars-forward "^ \n") (setq first nil))) -- 2.39.5