Function: tooltip-help-tips

tooltip-help-tips is a byte-compiled function defined in tooltip.el.gz.

Signature

(tooltip-help-tips EVENT)

Documentation

Hook function to display a help tooltip.

This is installed on the hook tooltip-functions, which is run when the timer with id tooltip-timeout-id fires. Value is non-nil if this function handled the tip.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/tooltip.el.gz
(defun tooltip-help-tips (_event)
  "Hook function to display a help tooltip.
This is installed on the hook `tooltip-functions', which
is run when the timer with id `tooltip-timeout-id' fires.
Value is non-nil if this function handled the tip."
  (when (stringp tooltip-help-message)
    (tooltip-show tooltip-help-message (not tooltip-mode))
    t))