From 89fc7433ea158b7c46300bdce731a89f6f9d9677 Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Tue, 5 May 1998 10:31:34 +0000 Subject: [PATCH] In put-image, fix a call to put-image that supplied a non-boolean argument in a place where boolean was declared. Bug noticed and suggested fix by Fred Gilham. --- clx/image.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clx/image.lisp b/clx/image.lisp index 080043bc9..f5c6c2e83 100644 --- a/clx/image.lisp +++ b/clx/image.lisp @@ -2652,7 +2652,8 @@ (unless gcontext (xlib::required-arg gcontext)) (error "Pixmap depth ~d incompatable with image depth ~d" depth image-depth))) - (put-image pixmap gc image :x 0 :y 0 :bitmap-p (and (= image-depth 1) gcontext)) + (put-image pixmap gc image :x 0 :y 0 :bitmap-p (and (= image-depth 1) + (not (null gcontext))) ;; Tile when image-width is less than the pixmap width, or ;; the image-height is less than the pixmap height. ;; ??? Would it be better to create a temporary pixmap and -- GitLab