[slime-cvs] CVS slime
trittweiler
trittweiler at common-lisp.net
Thu Aug 2 15:42:23 UTC 2007
Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv18634
Modified Files:
slime.el
Log Message:
* slime.el (slime-kill-all-buffers): Now also kills all buffers
beginning with a `*SLIME' prefix (like, for instance, `*SLIME
Apropos*', or `*SLIME macroexpansion*'.)
--- /project/slime/cvsroot/slime/slime.el 2007/06/28 12:27:51 1.794
+++ /project/slime/cvsroot/slime/slime.el 2007/08/02 15:42:23 1.795
@@ -4578,7 +4578,8 @@
(when (or (string= (buffer-name buf) slime-event-buffer-name)
(string-match "^\\*inferior-lisp*" (buffer-name buf))
(string-match "^\\*slime-repl .*\\*$" (buffer-name buf))
- (string-match "^\\*sldb .*\\*$" (buffer-name buf)))
+ (string-match "^\\*sldb .*\\*$" (buffer-name buf))
+ (string-match "^\\*SLIME.*\\*$" (buffer-name buf)))
(kill-buffer buf))))
More information about the slime-cvs
mailing list