Function: semantic-idle-breadcrumbs--popup-menu
semantic-idle-breadcrumbs--popup-menu is an interactive and
byte-compiled function defined in idle.el.gz.
Signature
(semantic-idle-breadcrumbs--popup-menu EVENT)
Documentation
Popup a menu that displays things to do to the clicked 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/idle.el.gz
(defun semantic-idle-breadcrumbs--popup-menu (event)
"Popup a menu that displays things to do to the clicked tag.
Argument EVENT describes the event that caused this function to
be called."
(interactive "e")
(let ((old-window (selected-window))
(window (semantic-event-window event)))
(select-window window t)
(popup-menu semantic-idle-breadcrumbs-popup-menu)
(select-window old-window)))