Function: dictionary-new-matching

dictionary-new-matching is a byte-compiled function defined in dictionary.el.gz.

Signature

(dictionary-new-matching WORD)

Documentation

Run a new matching search on WORD.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-new-matching (word)
  "Run a new matching search on WORD."
  (dictionary-store-positions)
  (dictionary-ensure-buffer)
  (dictionary-new-matching-internal word dictionary-default-dictionary
                                    dictionary-default-strategy
                                    'dictionary-display-match-result)
  (dictionary-store-state 'dictionary-new-matching-internal
			  (list word dictionary-default-dictionary
				dictionary-default-strategy
				'dictionary-display-match-result)))