Variable: lisp-indent-function

lisp-indent-function is a customizable variable defined in lisp-mode.el.gz.

Value

lisp-indent-function

Documentation

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.

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/lisp-mode.el.gz
(defcustom 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'."
  :type 'function
  :group 'lisp)