Function: dictionary-check-reply
dictionary-check-reply is a byte-compiled function defined in
dictionary.el.gz.
Signature
(dictionary-check-reply REPLY CODE)
Documentation
Extract the reply code from REPLY and check against CODE.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-check-reply (reply code)
"Extract the reply code from REPLY and check against CODE."
(let ((number (dictionary-reply-code reply)))
(and (numberp number)
(= number code))))