summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/lisp-mode.el
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2005-02-01 15:50:46 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2005-02-01 15:50:46 +0000
commitcc08f5b25368d2113b7346bd2701535de48d9967 (patch)
tree060231e9ebf73216890b18c71789b086abf4225d /lisp/emacs-lisp/lisp-mode.el
parentb961eb0e9896443e57a18e5d59d7227ce158079c (diff)
downloademacs-cc08f5b25368d2113b7346bd2701535de48d9967.tar.gz
emacs-cc08f5b25368d2113b7346bd2701535de48d9967.tar.bz2
emacs-cc08f5b25368d2113b7346bd2701535de48d9967.zip
(lisp-indent-function): Fix bug:
When delegating, order args in the funcall correctly.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r--lisp/emacs-lisp/lisp-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 6548a70f7d8..6b5c0b1c0f1 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -884,8 +884,8 @@ that specifies how to do the indentation. The property value can be
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 @@ This function also returns nil meaning don't specify the indentation."
(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.")