Function: semantic-ia-fast-mouse-jump

semantic-ia-fast-mouse-jump is an autoloaded, interactive and byte-compiled function defined in ia.el.gz.

Signature

(semantic-ia-fast-mouse-jump EVT)

Documentation

Jump to the tag referred to by the point clicked on.

See semantic-ia-fast-jump for details on how it works.
 This command is meant to be bound to a mouse event.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ia.el.gz
;;;###autoload
(defun semantic-ia-fast-mouse-jump (evt)
  "Jump to the tag referred to by the point clicked on.
See `semantic-ia-fast-jump' for details on how it works.
 This command is meant to be bound to a mouse event."
  (interactive "e")
  (semantic-ia-fast-jump
   (save-excursion
     (posn-set-point (event-end evt))
     (point))))