(menu-bar-goto-menu) [next-tag, next-tag-otherw]:
authorEli Zaretskii <eliz@gnu.org>
Sun, 20 Feb 2000 12:22:14 +0000 (12:22 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 20 Feb 2000 12:22:14 +0000 (12:22 +0000)
Don't call ring-empty-p unless tags-location-ring is bound.
From Noah Friedman <friedman@splode.com>.

lisp/menu-bar.el

index 90c26fc..c9595f6 100644 (file)
@@ -326,12 +326,14 @@ A large number or nil slows down menu responsiveness."
 (define-key menu-bar-goto-menu [next-tag-otherw]
   '(menu-item "Next Tag in Other Window"
              (function (lambda () (find-tag-other-window nil t)))
-             :enable (not (ring-empty-p tags-location-ring))
+             :enable (and (boundp 'tags-location-ring)
+                          (not (ring-empty-p tags-location-ring)))
              :help "Find next function/variable matching last tag name in another window"))
 (define-key menu-bar-goto-menu [next-tag]
   '(menu-item "Find Next Tag"
              (function (lambda () (find-tag nil t)))
-             :enable (not (ring-empty-p tags-location-ring))
+             :enable (and (boundp 'tags-location-ring)
+                          (not (ring-empty-p tags-location-ring)))
              :help "Find next function/variable matching last tag name"))
 (define-key menu-bar-goto-menu [find-tag-otherw]
   '(menu-item "Find Tag in Other Window..." find-tag-other-window