Function: lisp-compile-string

lisp-compile-string is a byte-compiled function defined in inf-lisp.el.gz.

Signature

(lisp-compile-string STRING)

Documentation

Send STRING to the inferior Lisp process to be compiled and executed.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defun lisp-compile-string (string)
  "Send STRING to the inferior Lisp process to be compiled and executed."
  (comint-send-string
   (inferior-lisp-proc)
   (format "(funcall (compile nil (lambda () %s)))\n" string)))