mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +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
1 changed files with 2 additions and 1 deletions
|
|
@ -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 a new issue