Function: cperl-toggle-construct-fix
cperl-toggle-construct-fix is an interactive and byte-compiled
function defined in cperl-mode.el.gz.
Signature
(cperl-toggle-construct-fix)
Documentation
Toggle whether indent-region/indent-sexp fix whitespace too.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-toggle-construct-fix ()
"Toggle whether `indent-region'/`indent-sexp' fix whitespace too."
(interactive)
(setq cperl-indent-region-fix-constructs
(if cperl-indent-region-fix-constructs
nil
1))
(message "indent-region/indent-sexp will %sbe automatically fix whitespace."
(if cperl-indent-region-fix-constructs "" "not ")))