Function: tooltip-delay

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

Signature

(tooltip-delay)

Documentation

Return the delay in seconds for the next tooltip.

View in manual

Probably introduced at or before Emacs version 21.2.

Source Code

;; Defined in /usr/src/emacs/lisp/tooltip.el.gz
;;; Timeout for tooltip display

(defun tooltip-delay ()
  "Return the delay in seconds for the next tooltip."
  (if (and tooltip-hide-time
	   (time-less-p (time-since tooltip-hide-time)
			tooltip-recent-seconds))
      tooltip-short-delay
    tooltip-delay))