mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-03 11:33:37 +00:00
(forward-paragraph): Fix editing error
in the updating of paragraph-separate.
This commit is contained in:
parent
5f0cfe8bff
commit
c4ac30da67
@ -156,9 +156,9 @@ to which the end of the previous line belongs, or the end of the buffer."
|
||||
(equal ?^ (aref paragraph-start 0)))
|
||||
(substring paragraph-start 1)
|
||||
paragraph-start))
|
||||
(paragraph-separate (if (and (not (equal "" paragraph-start))
|
||||
(paragraph-separate (if (and (not (equal "" paragraph-separate))
|
||||
(equal ?^ (aref paragraph-separate 0)))
|
||||
(substring paragraph-separate 1)
|
||||
(substring paragraph-separate 1)
|
||||
paragraph-separate))
|
||||
(paragraph-separate
|
||||
(if fill-prefix-regexp
|
||||
|
Loading…
Reference in New Issue
Block a user