mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
*** empty log message ***
This commit is contained in:
parent
a5d81a4235
commit
b4e6c391d8
1 changed files with 5 additions and 1 deletions
|
|
@ -130,7 +130,11 @@ negative arg -N means kill forward to Nth end of paragraph."
|
|||
(forward-paragraph -1)
|
||||
(setq npoint (point))
|
||||
(skip-chars-forward " \t\n")
|
||||
(if (>= (point) opoint)
|
||||
;; If the range of blank lines found spans the original start point,
|
||||
;; try again from the beginning of it.
|
||||
;; Must be careful to avoid infinite loop
|
||||
;; when following a single return at start of buffer.
|
||||
(if (and (>= (point) opoint) (< npoint opoint))
|
||||
(progn
|
||||
(goto-char npoint)
|
||||
(if (> npoint (point-min))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue