mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Fix allout point movement problem
* lisp/allout.el (allout-next-visible-heading): Ensure that we move to the next physical line (bug#51530).
This commit is contained in:
parent
99a1e87067
commit
0a7ccdaeef
1 changed files with 2 additions and 0 deletions
|
|
@ -3079,6 +3079,8 @@ Move to buffer limit in indicated direction if headings are exhausted."
|
|||
(backward (if (< arg 0) (setq arg (* -1 arg))))
|
||||
(step (if backward -1 1))
|
||||
(progress (allout-current-bullet-pos))
|
||||
;; Move to the next physical line.
|
||||
(line-move-visual nil)
|
||||
prev got)
|
||||
|
||||
(while (> arg 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue