Function: dictionary-display-word-entry

dictionary-display-word-entry is a byte-compiled function defined in dictionary.el.gz.

Signature

(dictionary-display-word-entry DICTIONARY DESCRIPTION)

Documentation

Insert an explanation for DESCRIPTION from DICTIONARY.

The DICTIONARY is only used for decoding the bytes to display the DESCRIPTION.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-display-word-entry (dictionary description)
  "Insert an explanation for DESCRIPTION from DICTIONARY.
The DICTIONARY is only used for decoding the bytes to display the DESCRIPTION."
  (let ((start (point)))
    (insert "From "
	    dictionary-description-open-delimiter
	    (dictionary-decode-charset description dictionary)
	    dictionary-description-close-delimiter
	    " [" (dictionary-decode-charset dictionary dictionary) "]:")
    (put-text-property start (point) 'face 'dictionary-word-entry-face)
    (insert "\n\n")))