1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-07 15:21:46 +00:00

(indent-sexp): Even if outer-loop-done is t, still move down one line.

This commit is contained in:
Richard M. Stallman 1993-05-29 05:45:47 +00:00
parent 278584fb62
commit 1f5038b52e

View File

@ -560,7 +560,7 @@ ENDPOS is encountered."
(or outer-loop-done
(setq outer-loop-done (<= next-depth 0)))
(if outer-loop-done
nil
(forward-line 1)
(while (> last-depth next-depth)
(setq indent-stack (cdr indent-stack)
last-depth (1- last-depth)))