Function: dictionary-do-select-dictionary
dictionary-do-select-dictionary is a byte-compiled function defined in
dictionary.el.gz.
Signature
(dictionary-do-select-dictionary &rest IGNORED)
Documentation
The workhorse for doing the dictionary selection.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-do-select-dictionary (&rest _ignored)
"The workhorse for doing the dictionary selection."
(message "Looking up databases and descriptions")
(dictionary-send-command "show db")
(let ((reply (dictionary-read-reply-and-split)))
(message nil)
(if (dictionary-check-reply reply 554)
(error "No dictionary present")
(unless (dictionary-check-reply reply 110)
(error "Unknown server answer: %s"
(dictionary-reply reply)))
(dictionary-display-dictionaries))))