Function: network-stream-command
network-stream-command is a byte-compiled function defined in
network-stream.el.gz.
Signature
(network-stream-command STREAM COMMAND EOC)
Source Code
;; Defined in /usr/src/emacs/lisp/net/network-stream.el.gz
(defun network-stream-command (stream command eoc)
(when command
(let ((start (with-current-buffer (process-buffer stream) (point-max))))
(process-send-string stream command)
(network-stream-get-response stream start eoc))))