1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(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.
This commit is contained in:
Richard M. Stallman 1993-12-23 03:47:45 +00:00
parent 5590a22428
commit aea2e14ce5

View File

@ -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)))