Function: semantic-symref-rb-goto-file

semantic-symref-rb-goto-file is a byte-compiled function defined in list.el.gz.

Signature

(semantic-symref-rb-goto-file &optional BUTTON)

Documentation

Go to the file specified in the symref results buffer.

BUTTON is the button that was clicked.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/symref/list.el.gz
(defun semantic-symref-rb-goto-file (&optional button)
  "Go to the file specified in the symref results buffer.
BUTTON is the button that was clicked."
  (let* ((tag (button-get button 'tag))
	 (buff (semantic-tag-buffer tag))
	 (win (selected-window))
	 )
    (switch-to-buffer-other-window buff)
    (pulse-momentary-highlight-one-line (point))
    (when (eq last-command-event ?\s) (select-window win))
    ))