diff options
| author | Richard M. Stallman | 1994-10-23 09:40:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-10-23 09:40:07 +0000 |
| commit | 0704eec93390c133f5688d8cf5c772227cb83f90 (patch) | |
| tree | 5c200615c7d983eab63ba6332f1a6ccbc9c32f43 /src | |
| parent | 5c3a351a29e199da54777fd712c751ebca8280f7 (diff) | |
| download | emacs-0704eec93390c133f5688d8cf5c772227cb83f90.tar.gz emacs-0704eec93390c133f5688d8cf5c772227cb83f90.zip | |
(unload_color): Pass arg f to WHITE_PIX_DEFAULT and BLACK_PIX_DEFAULT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 4 |
1 files 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) | |||
| 374 | Colormap cmap; | 374 | Colormap cmap; |
| 375 | Display *dpy = FRAME_X_DISPLAY (f); | 375 | Display *dpy = FRAME_X_DISPLAY (f); |
| 376 | if (pixel == FACE_DEFAULT | 376 | if (pixel == FACE_DEFAULT |
| 377 | || pixel == BLACK_PIX_DEFAULT | 377 | || pixel == BLACK_PIX_DEFAULT (f) |
| 378 | || pixel == WHITE_PIX_DEFAULT) | 378 | || pixel == WHITE_PIX_DEFAULT (f)) |
| 379 | return; | 379 | return; |
| 380 | cmap = DefaultColormapOfScreen (DefaultScreenOfDisplay (dpy)); | 380 | cmap = DefaultColormapOfScreen (DefaultScreenOfDisplay (dpy)); |
| 381 | BLOCK_INPUT; | 381 | BLOCK_INPUT; |