Function: cperl--set-file-style

cperl--set-file-style is a byte-compiled function defined in cperl-mode.el.gz.

Signature

(cperl--set-file-style)

Documentation

Set the file style according to the variable cperl-file-style(var)/cperl-file-style(fun).

Do nothing if the variable is nil.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl--set-file-style ()
  "Set the file style according to the variable `cperl-file-style'.
Do nothing if the variable is nil."
  (when cperl-file-style
    (cperl-file-style cperl-file-style)))