Variable: inferior-lisp-load-command

inferior-lisp-load-command is a customizable variable defined in inf-lisp.el.gz.

Value

"(load \"%s\")\n"

Documentation

Format-string for building a Lisp expression to load a file.

This format string should use %s to substitute a file name and should result in a Lisp expression that will command the inferior Lisp to load that file. The default works acceptably on most Lisps. The string "(progn (load \\"%s\" :verbose nil :print t) (values))\\n" produces cosmetically superior output for this application, but it works only in Common Lisp.

Probably introduced at or before Emacs version 18.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defcustom inferior-lisp-load-command "(load \"%s\")\n"
  "Format-string for building a Lisp expression to load a file.
This format string should use `%s' to substitute a file name
and should result in a Lisp expression that will command the inferior Lisp
to load that file.  The default works acceptably on most Lisps.
The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\n\"
produces cosmetically superior output for this application,
but it works only in Common Lisp."
  :type 'string)