Function: dictionary-popup-matching-words

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

Signature

(dictionary-popup-matching-words &optional WORD)

Documentation

Display entries matching WORD or the current word if not given.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
;;;###autoload
(defun dictionary-popup-matching-words (&optional word)
  "Display entries matching WORD or the current word if not given."
  (interactive)
  (dictionary-do-matching (or word (current-word)
                              (user-error "Nothing to search for"))
			  dictionary-default-dictionary
			  dictionary-default-popup-strategy
			  'dictionary-process-popup-replies))