Function: dframe-help-echo

dframe-help-echo is a byte-compiled function defined in dframe.el.gz.

Signature

(dframe-help-echo WINDOW &optional BUFFER POSITION)

Documentation

Display help based context.

The context is in WINDOW, viewing BUFFER, at POSITION.

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-help-echo (_window &optional buffer position)
  "Display help based context.
The context is in WINDOW, viewing BUFFER, at POSITION."
  (when (and (not dframe-track-mouse-function)
	     (bufferp buffer)
	     dframe-help-echo-function)
    (let ((dframe-suppress-message-flag t))
      (with-current-buffer buffer
	(save-excursion
	  (if position (goto-char position))
	  (funcall dframe-help-echo-function))))))