Mercurial > emacs
diff lisp/emacs-lisp/lisp-mode.el @ 3241:6c9b5f6dca70
(indent-sexp): Even if outer-loop-done is t, still move down one line.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 29 May 1993 05:45:47 +0000 |
parents | 420dfaaacfc5 |
children | 507f64624555 |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el Sat May 29 05:22:49 1993 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Sat May 29 05:45:47 1993 +0000 @@ -560,7 +560,7 @@ (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)))