Function: help-at-pt-cancel-timer
help-at-pt-cancel-timer is an autoloaded, interactive and
byte-compiled function defined in help-at-pt.el.gz.
Signature
(help-at-pt-cancel-timer)
Documentation
Cancel any timer set by help-at-pt-set-timer.
This disables help-at-pt-display-when-idle.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/help-at-pt.el.gz
;;;###autoload
(defun help-at-pt-cancel-timer ()
"Cancel any timer set by `help-at-pt-set-timer'.
This disables `help-at-pt-display-when-idle'."
(interactive)
(let ((inhibit-quit t))
(when help-at-pt-timer
(cancel-timer help-at-pt-timer)
(setq help-at-pt-timer nil))))