Function: dictionary-search-word-at-mouse
dictionary-search-word-at-mouse is an interactive and byte-compiled
function defined in dictionary.el.gz.
Signature
(dictionary-search-word-at-mouse EVENT)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
;;; Context menu support
(defun dictionary-search-word-at-mouse (event)
(interactive "e")
(let ((word (save-window-excursion
(save-excursion
(mouse-set-point event)
(current-word)))))
(dictionary-search word)))