Function: dictionary-lookup-definition

dictionary-lookup-definition is an autoloaded, interactive and byte-compiled function defined in dictionary.el.gz.

Signature

(dictionary-lookup-definition)

Documentation

Unconditionally lookup the word at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
;;;###autoload
(defun dictionary-lookup-definition ()
  "Unconditionally lookup the word at point."
  (interactive)
  (let ((word (current-word)))
    (unless word
      (error "No word at point"))
    (dictionary-new-search (cons word dictionary-default-dictionary))))