From: Geoff Voelker Date: Thu, 11 Apr 1996 04:13:07 +0000 (+0000) Subject: (BLACK_PIX_DEFAULT, WHITE_PIX_DEFAULT): Use PALETTERGB instead of RGB. X-Git-Tag: emacs-19.34~876 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3fed86ffd78e6fa03293d702ed1a1520f7f1dda5;p=emacs.git (BLACK_PIX_DEFAULT, WHITE_PIX_DEFAULT): Use PALETTERGB instead of RGB. --- diff --git a/src/w32term.h b/src/w32term.h index 36d9a4fd73c..368fc0c5d8e 100644 --- a/src/w32term.h +++ b/src/w32term.h @@ -25,8 +25,8 @@ Boston, MA 02111-1307, USA. */ /* The class of this X application. */ #define EMACS_CLASS "Emacs" -#define BLACK_PIX_DEFAULT(f) RGB(0,0,0) -#define WHITE_PIX_DEFAULT(f) RGB(255,255,255) +#define BLACK_PIX_DEFAULT(f) PALETTERGB(0,0,0) +#define WHITE_PIX_DEFAULT(f) PALETTERGB(255,255,255) #define FONT_WIDTH(f) ((f)->tm.tmAveCharWidth) #define FONT_HEIGHT(f) ((f)->tm.tmHeight)