Function: speedbar-reset-scanners

speedbar-reset-scanners is a byte-compiled function defined in speedbar.el.gz.

Signature

(speedbar-reset-scanners)

Documentation

Reset any variables used by functions in the stealthy list as state.

If new functions are added, their state needs to be updated here.

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-reset-scanners ()
  "Reset any variables used by functions in the stealthy list as state.
If new functions are added, their state needs to be updated here."
  (setq speedbar-vc-to-do-point t
	speedbar-obj-to-do-point t
	speedbar-ro-to-do-point t)
  (run-hooks 'speedbar-scanner-reset-hook)
  )