Function: speedbar-highlight-one-tag-line
speedbar-highlight-one-tag-line is a byte-compiled function defined in
speedbar.el.gz.
Signature
(speedbar-highlight-one-tag-line)
Documentation
Highlight the current line, unhighlighting a previously jumped to line.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-highlight-one-tag-line ()
"Highlight the current line, unhighlighting a previously jumped to line."
(speedbar-unhighlight-one-tag-line)
(setq speedbar-highlight-one-tag-line
(make-overlay (line-beginning-position)
(line-beginning-position 2)))
(overlay-put speedbar-highlight-one-tag-line 'face
'speedbar-highlight-face)
(add-hook 'pre-command-hook 'speedbar-unhighlight-one-tag-line))