Function: dictionary-read-reply-and-split

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

Signature

(dictionary-read-reply-and-split)

Documentation

Read the reply, split it into words and return it.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-read-reply-and-split ()
  "Read the reply, split it into words and return it."
  (let ((answer (make-symbol "reply-data"))
	(reply (dictionary-read-reply)))
    (let ((reply-list (dictionary-split-string reply)))
      (put answer 'reply reply)
      (put answer 'reply-list reply-list)
      (put answer 'reply-code (string-to-number (car reply-list)))
      answer)))