# HG changeset patch # User Richard M. Stallman # Date 738654347 0 # Node ID 6c9b5f6dca7076b7a18422452f4e62c33bec7078 # Parent f09230e68f20df8cbb0a85a11684b64884fa876d (indent-sexp): Even if outer-loop-done is t, still move down one line. diff -r f09230e68f20 -r 6c9b5f6dca70 lisp/emacs-lisp/lisp-mode.el --- 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)))