[slime-cvs] CVS slime
CVS User heller
heller at common-lisp.net
Tue Dec 9 07:47:49 UTC 2008
Update of /project/slime/cvsroot/slime
In directory cl-net:/tmp/cvs-serv6225
Modified Files:
ChangeLog slime.el
Log Message:
* slime.el (slime-repl-mode): Use `run-mode-hooks' rather than
just `run-hooks'. That way, after-change-major-mode-hook is
called automatically. Patch from David Reitter.
--- /project/slime/cvsroot/slime/ChangeLog 2008/12/07 12:25:38 1.1593
+++ /project/slime/cvsroot/slime/ChangeLog 2008/12/09 07:47:47 1.1594
@@ -1,9 +1,15 @@
+2008-12-09 David Reitter <david.reitter at gmail.com>
+
+ * slime.el (slime-repl-mode): Use `run-mode-hooks' rather than
+ just `run-hooks'. That way, after-change-major-mode-hook is
+ called automatically.
+
2008-12-07 Nikodemus Siivola <nikodemus at random-state.net>
* slime.el (slime-qualify-cl-symbol-name): Clean up the package
name using `slime-pretty-package-name', so that packages named with
strings are not left with the extra doublequotes.
-
+
2008-12-05 Tobias C. Rittweiler <tcr at freebits.de>
* slime.el (slime-macroexpansion-minor-mode-map): Bind keybindings
--- /project/slime/cvsroot/slime/slime.el 2008/12/07 12:25:38 1.1071
+++ /project/slime/cvsroot/slime/slime.el 2008/12/09 07:47:48 1.1072
@@ -2939,7 +2939,7 @@
'slime-repl-mode-beginning-of-defun)
(set (make-local-variable 'end-of-defun-function)
'slime-repl-mode-end-of-defun)
- (run-hooks 'slime-repl-mode-hook))
+ (run-mode-hooks 'slime-repl-mode-hook))
(defun slime-repl-buffer (&optional create connection)
"Get the REPL buffer for the current connection; optionally create."
More information about the slime-cvs
mailing list