# HG changeset patch # User Richard M. Stallman # Date 756618465 0 # Node ID 872d39813f709ae34c44c474f166342076e5100e # Parent fee2ab7de353b92cfecd1adbe96731495f4404d9 (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 -r fee2ab7de353 -r 872d39813f70 lisp/textmodes/fill.el --- a/lisp/textmodes/fill.el Thu Dec 23 03:47:06 1993 +0000 +++ b/lisp/textmodes/fill.el Thu Dec 23 03:47:45 1993 +0000 @@ -179,7 +179,8 @@ (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)))