Function: easy-menu-item-present-p
easy-menu-item-present-p is a byte-compiled function defined in
easymenu.el.gz.
Signature
(easy-menu-item-present-p MAP PATH NAME)
Documentation
In submenu of MAP with path PATH, return non-nil if item NAME is present.
MAP and PATH are defined as in easy-menu-add-item.
NAME should be a string, the name of the element to be looked for.
Probably introduced at or before Emacs version 20.4.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/easymenu.el.gz
(defun easy-menu-item-present-p (map path name)
"In submenu of MAP with path PATH, return non-nil if item NAME is present.
MAP and PATH are defined as in `easy-menu-add-item'.
NAME should be a string, the name of the element to be looked for."
(easy-menu-return-item (easy-menu-get-map map path) name))