Function: dictionary-new-matching-internal

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

Signature

(dictionary-new-matching-internal WORD DICTIONARY STRATEGY FUNCTION)

Documentation

Start a new matching for WORD in DICTIONARY after preparing the buffer.

FUNCTION is the callback which is called for each search result.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-new-matching-internal (word dictionary strategy function)
  "Start a new matching for WORD in DICTIONARY after preparing the buffer.
FUNCTION is the callback which is called for each search result."
  (dictionary-pre-buffer)
  (dictionary-do-matching word dictionary strategy function))