[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Strange behaviour after Show/Hide Speedbar in Emacs 22.1
From: |
Juanma Barranquero |
Subject: |
Re: Strange behaviour after Show/Hide Speedbar in Emacs 22.1 |
Date: |
Mon, 25 Jun 2007 12:29:15 +0200 |
On 6/25/07, Angelo Graziosi <address@hidden> wrote:
It look as if the speedbar were still 'live'
It is live, if somewhat hidden :)
Try the following patch.
Juanma
P.S.: Eric, is this patch OK?
Index: lisp/speedbar.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/speedbar.el,v
retrieving revision 1.87
diff -u -2 -r1.87 speedbar.el
--- lisp/speedbar.el 19 Feb 2007 13:37:23 -0000 1.87
+++ lisp/speedbar.el 25 Jun 2007 10:24:07 -0000
@@ -1012,6 +1012,8 @@
)
;; Frame modifications
- (set (make-local-variable 'dframe-delete-frame-function)
- 'speedbar-handle-delete-frame)
+ (if speedbar-frame
+ (set (make-local-variable 'dframe-delete-frame-function)
+ 'speedbar-handle-delete-frame)
+ (kill-local-variable 'dframe-delete-frame-function))
;; hscroll
(set (make-local-variable 'automatic-hscrolling) nil) ; Emacs 21
- Strange behaviour after Show/Hide Speedbar in Emacs 22.1, Angelo Graziosi, 2007/06/25
- Re: Strange behaviour after Show/Hide Speedbar in Emacs 22.1,
Juanma Barranquero <=
- Re: Strange behaviour after Show/Hide Speedbar in Emacs 22.1, Leo, 2007/06/25
- Re: Strange behaviour after Show/Hide Speedbar in Emacs 22.1, Juanma Barranquero, 2007/06/25
- Re: Strange behaviour after Show/Hide Speedbar in Emacs 22.1, Nick Roberts, 2007/06/25
- Re: Strange behaviour after Show/Hide Speedbar in Emacs 22.1, Leo, 2007/06/25
- Re: Strange behaviour after Show/Hide Speedbar in Emacs 22.1, Nick Roberts, 2007/06/25
- Re: Strange behaviour after Show/Hide Speedbar in Emacs 22.1, Vinicius Jose Latorre, 2007/06/25
- Re[2]: Strange behaviour after Show/Hide Speedbar in Emacs 22.1, Eric M. Ludlam, 2007/06/25
- Re[2]: Strange behaviour after Show/Hide Speedbar in Emacs 22.1, Eric M. Ludlam, 2007/06/25