(lisp-indent-function): Add doc string.
authorGlenn Morris <rgm@gnu.org>
Sun, 21 Jun 2009 01:39:43 +0000 (01:39 +0000)
committerGlenn Morris <rgm@gnu.org>
Sun, 21 Jun 2009 01:39:43 +0000 (01:39 +0000)
lisp/ChangeLog
lisp/emacs-lisp/lisp-mode.el

index 2d1dd7e..f802d7b 100644 (file)
@@ -1,5 +1,6 @@
 2009-06-21  Glenn Morris  <rgm@gnu.org>
 
+       * emacs-lisp/lisp-mode.el (lisp-indent-function)
        * emacs-lisp/cl-indent.el (lisp-indent-defun-method)
        (common-lisp-indent-function): Add doc strings.
 
index 45ed753..ec97a00 100644 (file)
@@ -880,7 +880,12 @@ which see."
 (put 'lisp-body-indent 'safe-local-variable
      (lambda (x) (or (null x) (integerp x))))
 
-(defvar lisp-indent-function 'lisp-indent-function)
+(defvar lisp-indent-function 'lisp-indent-function
+  "A function to be called by `calculate-lisp-indent'.
+It indents the arguments of a Lisp function call.  This function
+should accept two arguments: the indent-point, and the
+`parse-partial-sexp' state at that position.  One option for this
+function is `common-lisp-indent-function'.")
 
 (defun lisp-indent-line (&optional whole-exp)
   "Indent current line as Lisp code.