Variable: custom-variable-menu
custom-variable-menu is a variable defined in cus-edit.el.gz.
Value
nil
Documentation
If non-nil, an alist of actions for the custom-variable widget.
This variable is kept for backward compatibility reasons, please use
custom-variable-extended-menu instead.
Each entry has the form (NAME ACTION FILTER) where NAME is the name of
the menu entry, ACTION is the function to call on the widget when the
menu is selected, and FILTER is a predicate which takes a custom-variable
widget as an argument, and returns non-nil if ACTION is valid on that
widget. If FILTER is nil, ACTION is always valid.
Source Code
;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defvar custom-variable-menu nil
"If non-nil, an alist of actions for the `custom-variable' widget.
This variable is kept for backward compatibility reasons, please use
`custom-variable-extended-menu' instead.
Each entry has the form (NAME ACTION FILTER) where NAME is the name of
the menu entry, ACTION is the function to call on the widget when the
menu is selected, and FILTER is a predicate which takes a `custom-variable'
widget as an argument, and returns non-nil if ACTION is valid on that
widget. If FILTER is nil, ACTION is always valid.")