From: Jason Rumney Date: Wed, 20 Mar 2002 21:26:51 +0000 (+0000) Subject: (display-images-p): Do not explicitly check display type. X-Git-Tag: ttn-vms-21-2-B4~16058 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fcc6f5cc3efeeb7594b40e09d1df04c1c15321f7;p=emacs.git (display-images-p): Do not explicitly check display type. --- diff --git a/lisp/frame.el b/lisp/frame.el index 05a6a80eb49..6716f3d2657 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -946,10 +946,7 @@ DISPLAY can be a display name, a frame, or nil (meaning the selected frame's display)." (and (display-graphic-p display) (fboundp 'image-mask-p) - (fboundp 'image-size) - ;; FIXME: this will need to be revisited when the Windows port - ;; supports images. - (not (eq (framep-on-display display) 'w32)))) + (fboundp 'image-size))) (defalias 'display-multi-frame-p 'display-graphic-p) (defalias 'display-multi-font-p 'display-graphic-p)