aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney <[email protected]>2002-03-20 21:26:51 +0000
committerJason Rumney <[email protected]>2002-03-20 21:26:51 +0000
commitfcc6f5cc3efeeb7594b40e09d1df04c1c15321f7 (patch)
tree1b44caf356bfa84009805b0a289cbd0ae7afdc67
parent3be38152af224044e1f178c78e23273178d34a81 (diff)
(display-images-p): Do not explicitly check display type.
-rw-r--r--lisp/frame.el5
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 05a6a80eb4..6716f3d265 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)