Variable: cperl-info-on-command-no-prompt
cperl-info-on-command-no-prompt is a customizable variable defined in
cperl-mode.el.gz.
Value
nil
Documentation
Not-nil (and non-null) means not to prompt on M-x cperl-info-on-command (cperl-info-on-command).
The opposite behavior is always available if prefixed with C-c.
Can be overwritten by cperl-hairy if nil.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
;; (defcustom cperl-clobber-mode-lists
;; (not
;; (and
;; (boundp 'interpreter-mode-alist)
;; (assoc "miniperl" interpreter-mode-alist)
;; (assoc "\\.\\([pP][Llm]\\|al\\)$" auto-mode-alist)))
;; "Whether to install us into `interpreter-' and `extension' mode lists."
;; :type 'boolean
;; :group 'cperl)
(defcustom cperl-info-on-command-no-prompt nil
"Not-nil (and non-null) means not to prompt on \\[cperl-info-on-command].
The opposite behavior is always available if prefixed with C-c.
Can be overwritten by `cperl-hairy' if nil."
:type '(choice (const null) boolean)
:group 'cperl-affected-by-hairy)