diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-05-29 05:45:47 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-05-29 05:45:47 +0000 |
commit | 1f5038b52e5c14d69a4615c9992625e848f6d43b (patch) | |
tree | 48f3b42bb7d4cd868dd8c4eb29e0175cc0a4fbcf /lisp/emacs-lisp | |
parent | 278584fb621121ed0c7d0e89ed434c617803deaa (diff) | |
download | emacs-1f5038b52e5c14d69a4615c9992625e848f6d43b.tar.gz emacs-1f5038b52e5c14d69a4615c9992625e848f6d43b.tar.bz2 emacs-1f5038b52e5c14d69a4615c9992625e848f6d43b.zip |
(indent-sexp): Even if outer-loop-done is t, still move down one line.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 4a75b4c4097..17acda41e22 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -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))) |