Variable: context-menu-entry

context-menu-entry is a variable defined in mouse.el.gz.

Value

(menu-item "Context Menu" ignore :filter
	   (lambda
	     (_)
	     (context-menu-map)))

Documentation

Menu item that creates the context menu and can be bound to a mouse key.

Source Code

;; Defined in /usr/src/emacs/lisp/mouse.el.gz
(defvar context-menu-entry
  `(menu-item ,(purecopy "Context Menu") ignore
              :filter (lambda (_) (context-menu-map)))
  "Menu item that creates the context menu and can be bound to a mouse key.")