]> git.eshelyaron.com Git - emacs.git/commitdiff
(speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
authorEric M. Ludlam <zappo@gnu.org>
Mon, 24 Aug 1998 01:16:09 +0000 (01:16 +0000)
committerEric M. Ludlam <zappo@gnu.org>
Mon, 24 Aug 1998 01:16:09 +0000 (01:16 +0000)
lisp/speedbar.el

index b4ad8cffd30762c39f8ecdff394d7db63581a95d..4c11902d0b61c7f2a7270a8ba792c1f3eccd1852 100644 (file)
@@ -5,7 +5,7 @@
 ;; Author: Eric M. Ludlam <zappo@gnu.org>
 ;; Version: 0.7.2a
 ;; Keywords: file, tags, tools
-;; X-RCS: $Id: speedbar.el,v 1.11 1998/08/24 00:37:22 zappo Exp zappo $
+;; X-RCS: $Id: speedbar.el,v 1.12 1998/08/24 00:55:45 zappo Exp zappo $
 
 ;; This file is part of GNU Emacs.
 
@@ -2615,9 +2615,10 @@ interrupted by the user."
       (let ((l (speedbar-initial-stealthy-functions))
            (speedbar-stealthy-update-recurse t))
        (unwind-protect
-           (while (and l (funcall (car l)))
-             ;(sit-for 0)
-             (setq l (cdr l)))
+           (speedbar-with-writable
+            (while (and l (funcall (car l)))
+              ;;(sit-for 0)
+              (setq l (cdr l))))
          ;;(message "Exit with %S" (car l))
          ))))