diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1996-04-11 04:13:07 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1996-04-11 04:13:07 +0000 |
commit | f3e5e58304b6a3fd708c4989b8be461addfaab46 (patch) | |
tree | 4b8655bac84b0d9f0ef8e42cbdf0ade28f726e7c | |
parent | e21ce7b844de3c6424fd2edd5c41033dc1528efa (diff) | |
download | emacs-f3e5e58304b6a3fd708c4989b8be461addfaab46.tar.gz |
(BLACK_PIX_DEFAULT, WHITE_PIX_DEFAULT): Use PALETTERGB instead of RGB.
-rw-r--r-- | src/w32term.h | 4 |
1 files changed, 2 insertions, 2 deletions
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) |