[slime-cvs] CVS update: slime/slime.el

Helmut Eller heller at common-lisp.net
Mon Apr 18 19:23:41 UTC 2005


Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv23912

Modified Files:
	slime.el 
Log Message:
(inferior-lisp-program): Defvar it here, in case it is not defined in
loaddefs and inf-lisp is not loaded. (That's the case in XEmacs.)
Date: Mon Apr 18 21:23:41 2005
Author: heller

Index: slime/slime.el
diff -u slime/slime.el:1.483 slime/slime.el:1.484
--- slime/slime.el:1.483	Thu Apr 14 17:40:08 2005
+++ slime/slime.el	Mon Apr 18 21:23:40 2005
@@ -1180,6 +1180,11 @@
 (defvar slime-inferior-lisp-program-history '()
   "History list of command strings.  Used by `slime'.")
 
+;; XXX: inferior-lisp-program isn't preloaded in XEmacs. maybe we
+;; should use something else.
+(defvar inferior-lisp-program "lisp" 
+  "*Program name for invoking an inferior Lisp with for Inferior Lisp mode.")
+
 (defun slime (&optional command buffer coding-system)
   "Start an inferior^_superior Lisp and connect to its Swank server."
   (interactive (list (if current-prefix-arg




More information about the slime-cvs mailing list