Variable: dcl-calc-cont-indent-function

dcl-calc-cont-indent-function is a customizable variable defined in dcl-mode.el.gz.

Value

dcl-calc-cont-indent-relative

Documentation

Function to calculate indentation for a continuation line.

If this variable is non-nil it is called as a function:

(func CUR-INDENT EXTRA-INDENT)

The function must return the number of columns to indent the current line or nil to get the default indentation.

If this variable is nil, the indentation is calculated as CUR-INDENT + EXTRA-INDENT.

This package includes one function suitable for this:
  dcl-calc-cont-indent-relative

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
(defcustom dcl-calc-cont-indent-function 'dcl-calc-cont-indent-relative
  "Function to calculate indentation for a continuation line.
If this variable is non-nil it is called as a function:

\(func CUR-INDENT EXTRA-INDENT)

The function must return the number of columns to indent the current line or
nil to get the default indentation.

If this variable is nil, the indentation is calculated as
CUR-INDENT + EXTRA-INDENT.

This package includes one function suitable for this:
  `dcl-calc-cont-indent-relative'"
  :type 'function)