Function: dictionary-decode-charset
dictionary-decode-charset is a byte-compiled function defined in
dictionary.el.gz.
Signature
(dictionary-decode-charset TEXT DICTIONARY)
Documentation
Convert TEXT from the charset configured for DICTIONARY.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-decode-charset (text dictionary)
"Convert TEXT from the charset configured for DICTIONARY."
(let ((coding-system (dictionary-coding-system dictionary)))
(if coding-system
(decode-coding-string text coding-system)
text)))