Function: ede-tag-find

ede-tag-find is a byte-compiled function defined in speedbar.el.gz.

Signature

(ede-tag-find TEXT TOKEN INDENT)

Documentation

For the tag TEXT in a file TOKEN, goto that position.

INDENT is the current indentation level.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/speedbar.el.gz
(defun ede-tag-find (_text token _indent)
  "For the tag TEXT in a file TOKEN, goto that position.
INDENT is the current indentation level."
  (let ((file (ede-find-nearest-file-line)))
    (speedbar-find-file-in-frame file)
    (save-excursion (speedbar-stealthy-updates))
    ;; Reset the timer with a new timeout when clicking a file
    ;; in case the user was navigating directories, we can cancel
    ;; that other timer.
;    (speedbar-set-timer speedbar-update-speed)
    (goto-char token)
    (run-hooks 'speedbar-visiting-tag-hook)
    ;;(recenter)
    (dframe-maybee-jump-to-attached-frame)
    ))