Function: dictionary-mouse-popup-matching-words

dictionary-mouse-popup-matching-words is an autoloaded, interactive and byte-compiled function defined in dictionary.el.gz.

Signature

(dictionary-mouse-popup-matching-words EVENT)

Documentation

Display entries matching the word at the cursor retrieved using EVENT.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
;;;###autoload
(defun dictionary-mouse-popup-matching-words (event)
  "Display entries matching the word at the cursor retrieved using EVENT."
  (interactive "e")
  (let ((word (save-window-excursion
		(save-excursion
		  (mouse-set-point event)
		  (current-word)))))
    (dictionary-popup-matching-words word)))