[slime-cvs] CVS slime/contrib
heller
heller at common-lisp.net
Sat Nov 24 08:15:20 UTC 2007
Update of /project/slime/cvsroot/slime/contrib
In directory clnet:/tmp/cvs-serv19534
Modified Files:
slime-fuzzy.el ChangeLog
Log Message:
* slime-fuzzy.el: Use slime-require instead of a connected-hook.
--- /project/slime/cvsroot/slime/contrib/slime-fuzzy.el 2007/09/20 14:55:53 1.4
+++ /project/slime/cvsroot/slime/contrib/slime-fuzzy.el 2007/11/24 08:15:20 1.5
@@ -585,14 +585,12 @@
;;; Initialization
(defun slime-fuzzy-init ()
- (add-hook 'slime-connected-hook 'slime-fuzzy-on-connect)
(slime-fuzzy-bind-keys))
(defun slime-fuzzy-bind-keys ()
(define-key slime-mode-map "\C-c\M-i" 'slime-fuzzy-complete-symbol)
(define-key slime-repl-mode-map "\C-c\M-i" 'slime-fuzzy-complete-symbol))
-(defun slime-fuzzy-on-connect ()
- (slime-eval-async '(swank:swank-require :swank-fuzzy)))
+(slime-require :swank-fuzzy)
(provide 'slime-fuzzy)
--- /project/slime/cvsroot/slime/contrib/ChangeLog 2007/11/20 21:30:51 1.65
+++ /project/slime/cvsroot/slime/contrib/ChangeLog 2007/11/24 08:15:20 1.66
@@ -1,3 +1,7 @@
+2007-11-24 Helmut Eller <heller at common-lisp.net>
+
+ * slime-fuzzy.el: Use slime-require instead of a connected-hook.
+
2007-11-20 Helmut Eller <heller at common-lisp.net>
* swank-fancy-inspector.lisp (inspect-for-emacs function t): Don't
More information about the slime-cvs
mailing list