changeset 59848:d992bb330d29

(lisp-indent-function): Fix bug: When delegating, order args in the funcall correctly.
author Thien-Thi Nguyen <ttn@gnuvola.org>
date Tue, 01 Feb 2005 15:48:50 +0000
parents 1a68a372418d
children df388384f464
files lisp/emacs-lisp/lisp-mode.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el	Tue Feb 01 15:02:50 2005 +0000
+++ b/lisp/emacs-lisp/lisp-mode.el	Tue Feb 01 15:48:50 2005 +0000
@@ -884,8 +884,8 @@
   like ordinary function arguments and then indent any further
   arguments like a body;
 * a function to call just as this function was called.
-If that function returns nil, that means it doesn't specify
-the indentation.
+  If that function returns nil, that means it doesn't specify
+  the indentation.
 
 This function also returns nil meaning don't specify the indentation."
   (let ((normal-indent (current-column)))
@@ -921,7 +921,7 @@
 	       (lisp-indent-specform method state
 				     indent-point normal-indent))
 	      (method
-		(funcall method state indent-point)))))))
+		(funcall method indent-point state)))))))
 
 (defvar lisp-body-indent 2
   "Number of columns to indent the second line of a `(def...)' form.")