diff options
| -rw-r--r-- | lisp/gnus/mml.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gnus/mml.el b/lisp/gnus/mml.el index e3ab803dd5e..f8968fbcb7c 100644 --- a/lisp/gnus/mml.el +++ b/lisp/gnus/mml.el | |||
| @@ -1102,13 +1102,13 @@ If HANDLES is non-nil, use it instead reparsing the buffer." | |||
| 1102 | ["PGG manual" (lambda () (interactive) (message-info mml2015-use)) | 1102 | ["PGG manual" (lambda () (interactive) (message-info mml2015-use)) |
| 1103 | ;; XEmacs barfs on :visible. | 1103 | ;; XEmacs barfs on :visible. |
| 1104 | ,@(if (featurep 'xemacs) nil | 1104 | ,@(if (featurep 'xemacs) nil |
| 1105 | '(:visible (equal mml2015-use 'pgg))) | 1105 | '(:visible (and (boundp 'mml2015-use) (equal mml2015-use 'pgg)))) |
| 1106 | ,@(if (featurep 'xemacs) '(t) | 1106 | ,@(if (featurep 'xemacs) '(t) |
| 1107 | '(:help "Display the PGG manual"))] | 1107 | '(:help "Display the PGG manual"))] |
| 1108 | ["EasyPG manual" (lambda () (interactive) (message-info mml2015-use)) | 1108 | ["EasyPG manual" (lambda () (interactive) (require 'mml2015) (message-info mml2015-use)) |
| 1109 | ;; XEmacs barfs on :visible. | 1109 | ;; XEmacs barfs on :visible. |
| 1110 | ,@(if (featurep 'xemacs) nil | 1110 | ,@(if (featurep 'xemacs) nil |
| 1111 | '(:visible (equal mml2015-use 'epg))) | 1111 | '(:visible (and (boundp 'mml2015-use) (equal mml2015-use 'epg)))) |
| 1112 | ,@(if (featurep 'xemacs) '(t) | 1112 | ,@(if (featurep 'xemacs) '(t) |
| 1113 | '(:help "Display the EasyPG manual"))])) | 1113 | '(:help "Display the EasyPG manual"))])) |
| 1114 | 1114 | ||