[slime-cvs] CVS slime

CVS User heller heller at common-lisp.net
Fri Jul 13 13:52:45 UTC 2012


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

Modified Files:
	ChangeLog slime.el 
Log Message:
* slime.el: Don't compile functions that are now in other files.

--- /project/slime/cvsroot/slime/ChangeLog	2012/06/19 19:46:53	1.2344
+++ /project/slime/cvsroot/slime/ChangeLog	2012/07/13 13:52:45	1.2345
@@ -1,3 +1,7 @@
+2012-07-13  Helmut Eller  <heller at common-lisp.net>
+
+	* slime.el: Don't compile functions that are now in other files.
+
 2012-06-19  Helmut Eller  <heller at common-lisp.net>
 
 	* swank-ecl.lisp (wait-for-input): Provide implementation
--- /project/slime/cvsroot/slime/slime.el	2012/06/12 09:25:30	1.1410
+++ /project/slime/cvsroot/slime/slime.el	2012/07/13 13:52:45	1.1411
@@ -9340,16 +9340,12 @@
 
 (require 'bytecomp)
 (let ((byte-compile-warnings '()))
-  (mapc #'byte-compile
+  (mapc (lambda (sym)
+          (cond ((fboundp sym) (byte-compile sym))
+                (t (error "%S is not fbound." sym))))
         '(slime-alistify
           slime-log-event
           slime-events-buffer
-          ;;slime-write-string 
-          ;;slime-repl-emit
-          ;;slime-output-buffer
-          ;;slime-connection-output-buffer
-          ;;slime-output-filter
-          ;;slime-repl-show-maximum-output
           slime-process-available-input 
           slime-dispatch-event 
           slime-net-filter 
@@ -9358,8 +9354,6 @@
           slime-net-read
           slime-print-apropos
           slime-insert-propertized
-          slime-tree-insert
-          slime-symbol-constituent-at
           slime-beginning-of-symbol
           slime-end-of-symbol
           slime-eval-feature-expression





More information about the slime-cvs mailing list