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

Helmut Eller heller at common-lisp.net
Sun Oct 23 08:53:01 UTC 2005


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

Modified Files:
	slime.el ChangeLog 
Log Message:
* slime.el (slime-repl-history-size, slime-repl-history-file): Use
defcustom to declare the variables.

Date: Sun Oct 23 10:53:00 2005
Author: heller

Index: slime/slime.el
diff -u slime/slime.el:1.557 slime/slime.el:1.558
--- slime/slime.el:1.557	Fri Oct 21 10:05:00 2005
+++ slime/slime.el	Sun Oct 23 10:52:59 2005
@@ -436,6 +436,16 @@
   "Face for the result of an evaluation in the SLIME REPL."
   :group 'slime-repl)
 
+(defcustom slime-repl-history-file "~/.slime-history.eld"
+  "File to save the persistent REPL history to."
+  :type 'string
+  :group 'slime-repl)
+
+(defcustom slime-repl-history-size 100
+  "Maximum number of lines for persistent REPL history."
+  :type 'integer
+  :group 'slime-repl)
+
 
 ;;;; Minor modes
 ;;;;; slime-mode
@@ -3667,9 +3677,6 @@
   (slime-repl-history-replace 'forward regexp))
 
 ;;;;; Persistent History 
-
-(defvar slime-repl-history-file "~/.slime-history.eld")
-(defvar slime-repl-history-size 100)
 
 (defun slime-repl-merge-histories (old-hist new-hist)
   "Merge entries from OLD-HIST and NEW-HIST such that the new items in


Index: slime/ChangeLog
diff -u slime/ChangeLog:1.800 slime/ChangeLog:1.801
--- slime/ChangeLog:1.800	Sun Oct 23 10:47:54 2005
+++ slime/ChangeLog	Sun Oct 23 10:53:00 2005
@@ -1,3 +1,8 @@
+2005-10-23  Stefan Kamphausen <skampi at gmx.net>
+
+	* slime.el (slime-repl-history-size, slime-repl-history-file): Use
+	defcustom to declare the variables.
+	
 2005-10-23  Gabor Melis  <mega at hotpop.com>
  
 	* swank-backend.lisp (install-debugger-globally): new interface




More information about the slime-cvs mailing list