changeset 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 f09230e68f20
children f873e6b9af52
files lisp/emacs-lisp/lisp-mode.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)))