Function: dframe-track-mouse
dframe-track-mouse is an interactive and byte-compiled function
defined in dframe.el.gz.
Signature
(dframe-track-mouse EVENT)
Documentation
For motion EVENT, display info about the current line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defun dframe-track-mouse (event)
"For motion EVENT, display info about the current line."
(interactive "e")
(when (and dframe-track-mouse-function
(windowp (posn-window (event-end event)))) ; Sometimes
; there is no window to jump into.
(funcall dframe-track-mouse-function event)))