Function: lisp-eval-string
lisp-eval-string is a byte-compiled function defined in
inf-lisp.el.gz.
Signature
(lisp-eval-string STRING)
Documentation
Send STRING to the inferior Lisp process to be executed.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defun lisp-eval-string (string)
"Send STRING to the inferior Lisp process to be executed."
(comint-send-string (inferior-lisp-proc) (concat string "\n")))