diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-04-21 19:14:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-04-21 19:14:49 +0000 |
commit | 67d170f2d238536b6180b922d797e9c1cf6ed198 (patch) | |
tree | 79c004fee5ee59e3df564bfbade4cbce83f859df /lisp/emacs-lisp | |
parent | dc0485c4f86e8754635ecd2003188d3894c23974 (diff) | |
download | emacs-67d170f2d238536b6180b922d797e9c1cf6ed198.tar.gz emacs-67d170f2d238536b6180b922d797e9c1cf6ed198.tar.bz2 emacs-67d170f2d238536b6180b922d797e9c1cf6ed198.zip |
(easy-menu-add): Do call x-popup-menu, but only if it's defined.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/easymenu.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el index 88f7657b6bf..dbd7194f50a 100644 --- a/lisp/emacs-lisp/easymenu.el +++ b/lisp/emacs-lisp/easymenu.el @@ -478,8 +478,8 @@ Do it only if `easy-menu-precalculate-equivalent-keybindings' is on." (when easy-menu-precalculate-equivalent-keybindings (if (and (symbolp menu) (not (keymapp menu)) (boundp menu)) (setq menu (symbol-value menu))) - ;; x-popup-menu does not exist on tty-only Emacs. - ;; (if (keymapp menu) (x-popup-menu nil menu)) + (and (keymapp menu) (fboundp 'x-popup-menu) + (x-popup-menu nil menu)) )) (defun add-submenu (menu-path submenu &optional before in-menu) |