]> git.eshelyaron.com Git - emacs.git/commitdiff
(speedbar-with-writable): remove `toggle-read-only'.
authorEric M. Ludlam <zappo@gnu.org>
Mon, 24 Aug 1998 00:37:22 +0000 (00:37 +0000)
committerEric M. Ludlam <zappo@gnu.org>
Mon, 24 Aug 1998 00:37:22 +0000 (00:37 +0000)
(speedbar-mode): Set buffer to read only.

lisp/speedbar.el

index 9558c83774b19535c4575c7a967fca04310f5906..6b4a21e2a8645ecb7d1d3dac5bd66f886e1ebf1c 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.9 1998/08/19 01:43:37 zappo Exp done $
+;; X-RCS: $Id: speedbar.el,v 1.10 1998/08/19 21:43:56 done Exp zappo $
 
 ;; This file is part of GNU Emacs.
 
@@ -1174,6 +1174,7 @@ in the selected file.
                                                       speedbar-buffer)
                                                   (speedbar-frame-mode -1)))))
              t t)
+    (toggle-read-only 1)
     (speedbar-set-mode-line-format)
     (if speedbar-xemacsp
        (progn
@@ -1810,7 +1811,6 @@ to track file check ins, and will change the mode line to match
 (defmacro speedbar-with-writable (&rest forms)
   "Allow the buffer to be writable and evaluate FORMS."
   (list 'let '((inhibit-read-only t))
-       '(toggle-read-only -1)
        (cons 'progn forms)))
 (put 'speedbar-with-writable 'lisp-indent-function 0)