From 0704eec93390c133f5688d8cf5c772227cb83f90 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 23 Oct 1994 09:40:07 +0000 Subject: [PATCH] (unload_color): Pass arg f to WHITE_PIX_DEFAULT and BLACK_PIX_DEFAULT. --- src/xfaces.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xfaces.c b/src/xfaces.c index 2a466e6d64b..66f517b72e1 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -374,8 +374,8 @@ unload_color (f, pixel) Colormap cmap; Display *dpy = FRAME_X_DISPLAY (f); if (pixel == FACE_DEFAULT - || pixel == BLACK_PIX_DEFAULT - || pixel == WHITE_PIX_DEFAULT) + || pixel == BLACK_PIX_DEFAULT (f) + || pixel == WHITE_PIX_DEFAULT (f)) return; cmap = DefaultColormapOfScreen (DefaultScreenOfDisplay (dpy)); BLOCK_INPUT; -- 2.39.5