Variable: cperl-extra-newline-before-brace
cperl-extra-newline-before-brace is a customizable variable defined in
cperl-mode.el.gz.
Value
nil
Documentation
Non-nil means that code blocks start on a new line.
This affects if, elsif, while, until, else, for, foreach and do constructs look like:
if ()
{
}
instead of:
if () {
}
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defcustom cperl-extra-newline-before-brace nil
"Non-nil means that code blocks start on a new line.
This affects if, elsif, while, until, else, for, foreach and do
constructs look like:
if ()
{
}
instead of:
if () {
}"
:type 'boolean
:group 'cperl-autoinsert-details)