diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-10-07 16:05:43 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-10-07 16:22:51 +0200 |
commit | 9d14e410dac11990cf0e95a1a77e83827323530d (patch) | |
tree | 16a949b58ddc934edabbc359c4e2856a86ce7c15 /lisp/mh-e/mh-xface.el | |
parent | 148b136651413d8eca0f805c786fb04b9c5878b8 (diff) | |
download | emacs-9d14e410dac11990cf0e95a1a77e83827323530d.tar.gz emacs-9d14e410dac11990cf0e95a1a77e83827323530d.tar.bz2 emacs-9d14e410dac11990cf0e95a1a77e83827323530d.zip |
Delete some XEmacs compat code from mh-e/*.el
* lisp/mh-e/mh-acros.el (mh-mark-active-p):
* lisp/mh-e/mh-comp.el (mh-insert-x-mailer):
* lisp/mh-e/mh-compat.el (mh-define-obsolete-variable-alias)
(mh-make-obsolete-variable):
* lisp/mh-e/mh-folder.el (mh-folder-mode-map)
(mh-remove-xemacs-horizontal-scrollbar, mh-folder-mode):
* lisp/mh-e/mh-gnus.el (mh-gnus-local-map-property):
* lisp/mh-e/mh-show.el (mh-show-mode):
* lisp/mh-e/mh-utils.el (mh-colors-available-p):
* lisp/mh-e/mh-xface.el (mh-show-xface-function): Delete some
XEmacs compat code.
Diffstat (limited to 'lisp/mh-e/mh-xface.el')
-rw-r--r-- | lisp/mh-e/mh-xface.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/mh-e/mh-xface.el b/lisp/mh-e/mh-xface.el index 473fb409b5d..73406f09811 100644 --- a/lisp/mh-e/mh-xface.el +++ b/lisp/mh-e/mh-xface.el @@ -31,10 +31,7 @@ (autoload 'message-fetch-field "message") (defvar mh-show-xface-function - (cond ((and (featurep 'xemacs) (locate-library "x-face") (not (featurep 'xface))) - (load "x-face" t t) - #'mh-face-display-function) - ((>= emacs-major-version 21) + (cond ((>= emacs-major-version 21) #'mh-face-display-function) (t #'ignore)) "Determine at run time what function should be called to display X-Face.") |