diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-12-14 10:36:42 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-12-14 10:36:42 +0000 |
commit | 5e5b3d411448a7483bb15fccffbe1b1ff3cf194c (patch) | |
tree | df28219ea99f34307f6b2c41d77afbeb0d2595a5 /lisp/emacs-lisp | |
parent | e56031492e42b2c6a7f2c6e35b0e5b717208ad2b (diff) | |
download | emacs-5e5b3d411448a7483bb15fccffbe1b1ff3cf194c.tar.gz |
(easy-menu-current-active-maps): Test
if symbol is bound before getting its value.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/easymenu.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el index 6307e50a7a0..4364381dce9 100644 --- a/lisp/emacs-lisp/easymenu.el +++ b/lisp/emacs-lisp/easymenu.el @@ -1,6 +1,6 @@ ;;; easymenu.el --- support the easymenu interface for defining a menu. -;; Copyright (C) 1994, 1996, 1998 Free Software Foundation, Inc. +;; Copyright (C) 1994, 1996, 1998, 1999, 2000 Free Software Foundation, Inc. ;; Keywords: emulations ;; Author: rms @@ -544,7 +544,9 @@ If item is an old format item, a new format item is returned." (defun easy-menu-current-active-maps () (let ((maps (list (current-local-map) global-map))) (dolist (minor minor-mode-map-alist) - (if (symbol-value (car minor)) (push (cdr minor) maps))) + (when (and (boundp (car minor)) + (symbol-value (car minor))) + (push (cdr minor) maps))) (delq nil maps))) (defun easy-menu-get-map (map path &optional to-modify) |