Function: server-send-string
server-send-string is a byte-compiled function defined in
server.el.gz.
Signature
(server-send-string PROC STRING)
Documentation
A wrapper around process-send-string for logging.
Source Code
;; Defined in /usr/src/emacs/lisp/server.el.gz
(defun server-send-string (proc string)
"A wrapper around `process-send-string' for logging."
(server-log (concat "Sent " string) proc)
(process-send-string proc string))