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:
parent
5590a22428
commit
aea2e14ce5
@ -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)))
|
||||
|
Loading…
Reference in New Issue
Block a user