Function: dictionary-read-reply

dictionary-read-reply is a byte-compiled function defined in dictionary.el.gz.

Signature

(dictionary-read-reply)

Documentation

Read the reply line from the server.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-read-reply ()
  "Read the reply line from the server."
  (let ((answer (dictionary-connection-read-crlf dictionary-connection)))
    (if (string-match "\r?\n" answer)
	(substring answer 0 (match-beginning 0))
      answer)))