Variable: cperl-auto-newline

cperl-auto-newline is a customizable variable defined in cperl-mode.el.gz.

Value

nil

Documentation

Non-nil means automatically newline before and after braces, and after colons and semicolons, inserted in CPerl code. The following M-x cperl-electric-backspace (cperl-electric-backspace) will remove the inserted whitespace. Insertion after colons requires both this variable and cperl-auto-newline-after-colon set.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defcustom cperl-auto-newline nil
  "Non-nil means automatically newline before and after braces,
and after colons and semicolons, inserted in CPerl code.  The following
\\[cperl-electric-backspace] will remove the inserted whitespace.
Insertion after colons requires both this variable and
`cperl-auto-newline-after-colon' set."
  :type 'boolean
  :group 'cperl-autoinsert-details)