Function: speedbar-toggle-updates

speedbar-toggle-updates is an interactive and byte-compiled function defined in speedbar.el.gz.

Signature

(speedbar-toggle-updates)

Documentation

Toggle automatic update for the speedbar frame.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-toggle-updates ()
  "Toggle automatic update for the speedbar frame."
  (interactive)
  (if speedbar-update-flag
      (speedbar-disable-update)
    (speedbar-enable-update)))