Function: semantic-stickyfunc-menu

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

Signature

(semantic-stickyfunc-menu EVENT)

Documentation

Popup a menu that can help a user understand stickyfunc-mode.

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-stickyfunc-menu (event)
  "Popup a menu that can help a user understand stickyfunc-mode.
Argument EVENT describes the event that caused this function to be called."
  (interactive "e")
  (let* ((startwin (selected-window))
	 (win (car (car (cdr event))))
	 )
    (select-window win t)
    (save-excursion
      (goto-char (window-start win))
      (sit-for 0)
      (popup-menu semantic-stickyfunc-popup-menu event)
      )
    (select-window startwin)))