Function: speedbar-with-writable
speedbar-with-writable is a macro defined in speedbar.el.gz.
Signature
(speedbar-with-writable &rest FORMS)
Documentation
Allow the buffer to be writable and evaluate FORMS.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defmacro speedbar-with-writable (&rest forms)
"Allow the buffer to be writable and evaluate FORMS."
(declare (indent 0) (debug t))
`(let ((inhibit-read-only t))
,@forms))