From: Richard M. Stallman Date: Sun, 23 Oct 1994 09:40:07 +0000 (+0000) Subject: (unload_color): Pass arg f to WHITE_PIX_DEFAULT and BLACK_PIX_DEFAULT. X-Git-Tag: emacs-19.34~6184 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0704eec93390c133f5688d8cf5c772227cb83f90;p=emacs.git (unload_color): Pass arg f to WHITE_PIX_DEFAULT and BLACK_PIX_DEFAULT. --- 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;