* gnus-art.el (gnus-button-man-handler): Change default to
authorSimon Josefsson <jas@extundo.com>
Fri, 18 Oct 2002 04:14:05 +0000 (04:14 +0000)
committerSimon Josefsson <jas@extundo.com>
Fri, 18 Oct 2002 04:14:05 +0000 (04:14 +0000)
`manual-entry' (defined in both emacsen).
(gnus-button-man-handler): Remove emacsen difference and use
`manual-entry'.

lisp/ChangeLog
lisp/gnus-art.el

index e2345ce..1d52c0f 100644 (file)
@@ -1,3 +1,10 @@
+2002-10-18  Simon Josefsson  <jas@extundo.com>
+
+       * gnus-art.el (gnus-button-man-handler): Change default to
+       `manual-entry' (defined in both emacsen).
+       (gnus-button-man-handler): Remove emacsen difference and use
+       `manual-entry'.
+
 2002-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * spam.el: Wrap autoload settings for bbdb-records,
index 6e15099..9562f42 100644 (file)
@@ -5314,14 +5314,11 @@ groups."
   :group 'gnus-article-buttons
   :type 'regexp)
 
-(defcustom gnus-button-man-handler (if (featurep 'xemacs)
-                                      'manual-entry
-                                    'man)
+(defcustom gnus-button-man-handler 'manual-entry
   "Function to use for displaying man pages.
 The function must take at least one argument with a string naming the
 man page."
-  :type '(choice (function-item :tag "Man (Emacs)" man)
-                (function-item :tag "Man (XEmacs)" manual-entry)
+  :type '(choice (function-item :tag "Man" manual-entry)
                 (function-item :tag "Woman" woman)
                 (function :tag "Other"))
   :group 'gnus-article-buttons)