Function: dictionary-connection-send
dictionary-connection-send is a byte-compiled function defined in
dictionary-connection.el.gz.
Signature
(dictionary-connection-send CONNECTION DATA)
Documentation
Send DATA to the process stored in CONNECTION.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary-connection.el.gz
(defun dictionary-connection-send (connection data)
"Send DATA to the process stored in CONNECTION."
(unless (eq (dictionary-connection-status connection) 'up)
(error "Connection is not up"))
(with-current-buffer (dictionary-connection-buffer connection)
(goto-char (point-max))
(dictionary-connection-set-read-point connection (point))
(process-send-string (dictionary-connection-process connection) data)))