Variable: cperl-indent-rules-alist

cperl-indent-rules-alist is a variable defined in cperl-mode.el.gz.

Value

((pod nil)
 (here-doc nil)
 (here-doc-delim nil)
 (format nil)
 (in-pod nil)
 (comment-special:at-beginning-of-line nil)
 (string t)
 (comment nil))

Documentation

Alist of indentation rules for CPerl mode.

The values mean:
  nil: do not indent;
  FUNCTION: a function to compute the indentation to use.
    Takes a single argument which provides the currently computed indentation
    context, and should return the column to which to indent.
  NUMBER: add this amount of indentation.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
				  nil (point))))))))))))))) ; nothing interesting before

(defvar cperl-indent-rules-alist
  '((pod nil)				; via `syntax-type' property
    (here-doc nil)			; via `syntax-type' property
    (here-doc-delim nil)		; via `syntax-type' property
    (format nil)			; via `syntax-type' property
    (in-pod nil)			; via `in-pod' property
    (comment-special:at-beginning-of-line nil)
    (string t)
    (comment nil))
  "Alist of indentation rules for CPerl mode.
The values mean:
  nil: do not indent;
  FUNCTION: a function to compute the indentation to use.
    Takes a single argument which provides the currently computed indentation
    context, and should return the column to which to indent.
  NUMBER: add this amount of indentation.")