]> git.eshelyaron.com Git - emacs.git/commitdiff
(mml-menu): Don't assume mml2015 is bound.
authorChong Yidong <cyd@stupidchicken.com>
Tue, 30 Sep 2008 23:11:17 +0000 (23:11 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Tue, 30 Sep 2008 23:11:17 +0000 (23:11 +0000)
lisp/gnus/mml.el

index e3ab803dd5eb6965d972ecffb02e0459a269d194..f8968fbcb7c6141421ad11f1287cc9073455eceb 100644 (file)
@@ -1102,13 +1102,13 @@ If HANDLES is non-nil, use it instead reparsing the buffer."
     ["PGG manual" (lambda () (interactive) (message-info mml2015-use))
      ;; XEmacs barfs on :visible.
      ,@(if (featurep 'xemacs) nil
-        '(:visible (equal mml2015-use 'pgg)))
+        '(:visible (and (boundp 'mml2015-use) (equal mml2015-use 'pgg))))
      ,@(if (featurep 'xemacs) '(t)
         '(:help "Display the PGG manual"))]
-    ["EasyPG manual" (lambda () (interactive) (message-info mml2015-use))
+    ["EasyPG manual" (lambda () (interactive) (require 'mml2015) (message-info mml2015-use))
      ;; XEmacs barfs on :visible.
      ,@(if (featurep 'xemacs) nil
-        '(:visible (equal mml2015-use 'epg)))
+        '(:visible (and (boundp 'mml2015-use) (equal mml2015-use 'epg))))
      ,@(if (featurep 'xemacs) '(t)
         '(:help "Display the EasyPG manual"))]))