Function: dictionary-match-words
dictionary-match-words is an autoloaded, interactive and byte-compiled
function defined in dictionary.el.gz.
Signature
(dictionary-match-words &optional PATTERN &rest IGNORED)
Documentation
Search PATTERN in current default dictionary using default strategy.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
;;;###autoload
(defun dictionary-match-words (&optional pattern &rest _ignored)
"Search PATTERN in current default dictionary using default strategy."
(interactive)
;; can't use interactive because of mouse events
(or pattern
(setq pattern (read-string "Search pattern: "
nil 'dictionary-word-history)))
(dictionary-new-matching pattern))