From: Eric M. Ludlam Date: Mon, 24 Aug 1998 00:37:22 +0000 (+0000) Subject: (speedbar-with-writable): remove `toggle-read-only'. X-Git-Tag: emacs-20.4~1866 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2d0327e545cd3fc0f90643a2c3b7a043052d93c2;p=emacs.git (speedbar-with-writable): remove `toggle-read-only'. (speedbar-mode): Set buffer to read only. --- diff --git a/lisp/speedbar.el b/lisp/speedbar.el index 9558c83774b..6b4a21e2a86 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el @@ -5,7 +5,7 @@ ;; Author: Eric M. Ludlam ;; 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)