Function: semantic-decoration-fileless-include-menu
semantic-decoration-fileless-include-menu is an interactive and
byte-compiled function defined in include.el.gz.
Signature
(semantic-decoration-fileless-include-menu EVENT)
Documentation
Popup a menu that can help a user understand fileless includes.
Argument EVENT describes the event that caused this function to be called.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/include.el.gz
(defun semantic-decoration-fileless-include-menu (event)
"Popup a menu that can help a user understand fileless includes.
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-decoration-on-fileless-include-menu)
)
(select-window startwin)))