Function: speedbar-clear-current-file

speedbar-clear-current-file is a byte-compiled function defined in speedbar.el.gz.

Signature

(speedbar-clear-current-file)

Documentation

Locate the file thought to be current, and remove its highlighting.

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-clear-current-file ()
  "Locate the file thought to be current, and remove its highlighting."
  (save-excursion
    ;;(set-buffer speedbar-buffer)
    (if speedbar-last-selected-file
	(speedbar-with-writable
	  (if (speedbar-find-selected-file speedbar-last-selected-file)
	      (put-text-property (match-beginning 1)
				 (match-end 1)
				 'face
				 'speedbar-file-face))))))