Function: cperl-lazy-unstall

cperl-lazy-unstall is an interactive and byte-compiled function defined in cperl-mode.el.gz.

Signature

(cperl-lazy-unstall)

Documentation

Switch off Auto-Help on Perl constructs (put in the message area).

Delay of auto-help controlled by cperl-lazy-help-time.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-lazy-unstall ()
  "Switch off Auto-Help on Perl constructs (put in the message area).
Delay of auto-help controlled by `cperl-lazy-help-time'."
  (interactive)
  (remove-hook 'post-command-hook #'cperl-lazy-hook)
  (cancel-function-timers #'cperl-get-help-defer)
  (setq cperl-lazy-installed nil))