Function: semantic-decoration-unknown-include-menu

semantic-decoration-unknown-include-menu is an interactive and byte-compiled function defined in include.el.gz.

Signature

(semantic-decoration-unknown-include-menu EVENT)

Documentation

Popup a menu that can help a user understand unknown 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-unknown-include-menu (event)
  "Popup a menu that can help a user understand unknown 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-unknown-include-menu)
      )
    (select-window startwin)))