From: Richard M. Stallman Date: Thu, 23 Dec 1993 03:47:45 +0000 (+0000) Subject: (fill-region-as-paragraph): Do allow breaking line at a period X-Git-Tag: emacs-19.34~10560 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aea2e14ce538c98ccdbba633d428a8ca4af6e240;p=emacs.git (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. --- 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)))