Function: xscheme-send-string-2
xscheme-send-string-2 is a byte-compiled function defined in
xscheme.el.gz.
Signature
(xscheme-send-string-2 STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xscheme.el.gz
(defun xscheme-send-string-2 (string)
(let ((process (get-process xscheme-process-name)))
(process-send-string process (concat string "\n"))
(if (xscheme-process-buffer-current-p)
(set-marker (process-mark process) (point)))))