aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2000-10-27 01:36:40 +0000
committerMiles Bader2000-10-27 01:36:40 +0000
commit4ddf0e64941018634f6133cc6e113c7b7dfdfea8 (patch)
treed6049a7a593ddeca4306e99d666042b56a2b447c
parenta66d76d290e022285e7772b1286f45ddbc3ef23e (diff)
downloademacs-4ddf0e64941018634f6133cc6e113c7b7dfdfea8.tar.gz
emacs-4ddf0e64941018634f6133cc6e113c7b7dfdfea8.zip
Use (featurep 'xemacs) instead of the `gnus-xemacs' variable, as the
latter has been removed.
-rw-r--r--lisp/gnus/gnus-art.el8
-rw-r--r--lisp/gnus/gnus-ems.el2
-rw-r--r--lisp/gnus/gnus-start.el4
3 files changed, 7 insertions, 7 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index bba162588bb..55801cfcabb 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -874,7 +874,7 @@ See the manual for details."
874(defcustom gnus-treat-display-xface 874(defcustom gnus-treat-display-xface
875 (and (or (and (fboundp 'image-type-available-p) 875 (and (or (and (fboundp 'image-type-available-p)
876 (image-type-available-p 'xbm)) 876 (image-type-available-p 'xbm))
877 (and gnus-xemacs (featurep 'xface))) 877 (and (featurep 'xemacs) (featurep 'xface)))
878 'head) 878 'head)
879 "Display X-Face headers. 879 "Display X-Face headers.
880Valid values are nil, t, `head', `last', an integer or a predicate. 880Valid values are nil, t, `head', `last', an integer or a predicate.
@@ -883,7 +883,7 @@ See the manual for details."
883 :type gnus-article-treat-head-custom) 883 :type gnus-article-treat-head-custom)
884(put 'gnus-treat-display-xface 'highlight t) 884(put 'gnus-treat-display-xface 'highlight t)
885 885
886(defcustom gnus-treat-display-smileys (if (and gnus-xemacs 886(defcustom gnus-treat-display-smileys (if (and (featurep 'xemacs)
887 (featurep 'xpm)) 887 (featurep 'xpm))
888 t nil) 888 t nil)
889 "Display smileys. 889 "Display smileys.
@@ -893,7 +893,7 @@ See the manual for details."
893 :type gnus-article-treat-custom) 893 :type gnus-article-treat-custom)
894(put 'gnus-treat-display-smileys 'highlight t) 894(put 'gnus-treat-display-smileys 'highlight t)
895 895
896(defcustom gnus-treat-display-picons (if gnus-xemacs 'head nil) 896(defcustom gnus-treat-display-picons (if (featurep 'xemacs) 'head nil)
897 "Display picons. 897 "Display picons.
898Valid values are nil, t, `head', `last', an integer or a predicate. 898Valid values are nil, t, `head', `last', an integer or a predicate.
899See the manual for details." 899See the manual for details."
@@ -3704,7 +3704,7 @@ Argument LINES specifies lines to be scrolled down."
3704 (set-buffer gnus-article-current-summary) 3704 (set-buffer gnus-article-current-summary)
3705 (let (gnus-pick-mode) 3705 (let (gnus-pick-mode)
3706 (push (or key last-command-event) unread-command-events) 3706 (push (or key last-command-event) unread-command-events)
3707 (setq keys (if gnus-xemacs 3707 (setq keys (if (featurep 'xemacs)
3708 (events-to-keys (read-key-sequence nil)) 3708 (events-to-keys (read-key-sequence nil))
3709 (read-key-sequence nil))))) 3709 (read-key-sequence nil)))))
3710 3710
diff --git a/lisp/gnus/gnus-ems.el b/lisp/gnus/gnus-ems.el
index 084fdc092d2..d147132fd33 100644
--- a/lisp/gnus/gnus-ems.el
+++ b/lisp/gnus/gnus-ems.el
@@ -97,7 +97,7 @@
97 97
98(defun gnus-ems-redefine () 98(defun gnus-ems-redefine ()
99 (cond 99 (cond
100 (gnus-xemacs 100 ((featurep 'xemacs)
101 (gnus-xmas-redefine)) 101 (gnus-xmas-redefine))
102 102
103 ((featurep 'mule) 103 ((featurep 'mule)
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el
index 0fcb7dd9a6d..f6c1651ce2c 100644
--- a/lisp/gnus/gnus-start.el
+++ b/lisp/gnus/gnus-start.el
@@ -679,7 +679,7 @@ prompt the user for the name of an NNTP server to use."
679 (when gnus-simple-splash 679 (when gnus-simple-splash
680 (setq gnus-simple-splash nil) 680 (setq gnus-simple-splash nil)
681 (cond 681 (cond
682 (gnus-xemacs 682 ((featurep 'xemacs)
683 (gnus-xmas-splash)) 683 (gnus-xmas-splash))
684 ((and window-system 684 ((and window-system
685 (= (frame-height) (1+ (window-height)))) 685 (= (frame-height) (1+ (window-height))))
@@ -2628,7 +2628,7 @@ If FORCE is non-nil, the .newsrc file is read."
2628 (let ((str (buffer-substring 2628 (let ((str (buffer-substring
2629 (point) (progn (end-of-line) (point)))) 2629 (point) (progn (end-of-line) (point))))
2630 (coding 2630 (coding
2631 (and (or gnus-xemacs 2631 (and (or (featurep 'xemacs)
2632 (and (boundp 'enable-multibyte-characters) 2632 (and (boundp 'enable-multibyte-characters)
2633 enable-multibyte-characters)) 2633 enable-multibyte-characters))
2634 (fboundp 'gnus-mule-get-coding-system) 2634 (fboundp 'gnus-mule-get-coding-system)