# HG changeset patch # User Katsumi Yamaoka # Date 1283480943 0 # Node ID 64b3982570b50f22a2db13258512b6bd978c4d2f # Parent 969b41083104b063b37abdc382b59e51b311bf44 Make gnus-html work for XEmacs. diff -r 969b41083104 -r 64b3982570b5 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Fri Sep 03 01:00:10 2010 +0000 +++ b/lisp/gnus/ChangeLog Fri Sep 03 02:29:03 2010 +0000 @@ -1,5 +1,12 @@ 2010-09-03 Katsumi Yamaoka + * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p, + glyph-width and glyph-height instead of display-graphic-p and + image-size for XEmacs. + + * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p + for XEmacs. + * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name of symbol that holds plist data. (gnus-process-plist): Remove plist of process after getting it. diff -r 969b41083104 -r 64b3982570b5 lisp/gnus/gnus-html.el --- a/lisp/gnus/gnus-html.el Fri Sep 03 01:00:10 2010 +0000 +++ b/lisp/gnus/gnus-html.el Fri Sep 03 02:29:03 2010 +0000 @@ -242,11 +242,13 @@ (gnus-html-schedule-image-fetching buffer images))))) (defun gnus-html-put-image (file point string) - (when (display-graphic-p) + (when (gnus-graphic-display-p) (let* ((image (ignore-errors (gnus-create-image file))) (size (and image - (image-size image t)))) + (if (featurep 'xemacs) + (cons (glyph-width image) (glyph-height image)) + (image-size image t))))) (save-excursion (goto-char point) (if (and image diff -r 969b41083104 -r 64b3982570b5 lisp/gnus/gnus-util.el --- a/lisp/gnus/gnus-util.el Fri Sep 03 01:00:10 2010 +0000 +++ b/lisp/gnus/gnus-util.el Fri Sep 03 02:29:03 2010 +0000 @@ -1580,11 +1580,9 @@ (car (symbol-value history)))) (defun gnus-graphic-display-p () - (or (and (fboundp 'display-graphic-p) - (display-graphic-p)) - ;;;!!!This is bogus. Fixme! - (and (featurep 'xemacs) - t))) + (if (featurep 'xemacs) + (device-on-window-system-p) + (display-graphic-p))) (put 'gnus-parse-without-error 'lisp-indent-function 0) (put 'gnus-parse-without-error 'edebug-form-spec '(body))