Function: semantic-highlight-func-menu

semantic-highlight-func-menu is an interactive and byte-compiled function defined in util-modes.el.gz.

Signature

(semantic-highlight-func-menu EVENT)

Documentation

Popup a menu that displays things to do to the current tag.

Argument EVENT describes the event that caused this function to be called.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/util-modes.el.gz
(defun semantic-highlight-func-menu (event)
  "Popup a menu that displays things to do to the current tag.
Argument EVENT describes the event that caused this function to be called."
  (interactive "e")
  (let* ((startwin (selected-window))
	 (win (semantic-event-window event))
	 )
    (select-window win t)
    (save-excursion
      ;(goto-char (window-start win))
      (mouse-set-point event)
      (sit-for 0)
      (popup-menu semantic-highlight-func-popup-menu)
      )
    (select-window startwin)))