Variable: cperl-file-style

cperl-file-style is a customizable variable defined in cperl-mode.el.gz.

Value

nil

Documentation

Indentation style to use in cperl-mode.

This variable was added, or its default value changed, in Emacs 29.1.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defcustom cperl-file-style nil
  "Indentation style to use in cperl-mode."
  :type '(choice (const "CPerl")
                 (const "PBP")
                 (const "PerlStyle")
                 (const "GNU")
                 (const "C++")
                 (const "K&R")
                 (const "BSD")
                 (const "Whitesmith")
                 (const :tag "Default" nil))
  :version "29.1")