diff options
| author | Geoff Voelker | 1996-04-11 04:13:07 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1996-04-11 04:13:07 +0000 |
| commit | 3fed86ffd78e6fa03293d702ed1a1520f7f1dda5 (patch) | |
| tree | 5d086b766bebcc057c8a79df8bd0c7761395c8b2 | |
| parent | 1da8a6141ee76e1f581558a38ebce940adf8c4d0 (diff) | |
| download | emacs-3fed86ffd78e6fa03293d702ed1a1520f7f1dda5.tar.gz emacs-3fed86ffd78e6fa03293d702ed1a1520f7f1dda5.zip | |
(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. */ | |||
| 25 | /* The class of this X application. */ | 25 | /* The class of this X application. */ |
| 26 | #define EMACS_CLASS "Emacs" | 26 | #define EMACS_CLASS "Emacs" |
| 27 | 27 | ||
| 28 | #define BLACK_PIX_DEFAULT(f) RGB(0,0,0) | 28 | #define BLACK_PIX_DEFAULT(f) PALETTERGB(0,0,0) |
| 29 | #define WHITE_PIX_DEFAULT(f) RGB(255,255,255) | 29 | #define WHITE_PIX_DEFAULT(f) PALETTERGB(255,255,255) |
| 30 | 30 | ||
| 31 | #define FONT_WIDTH(f) ((f)->tm.tmAveCharWidth) | 31 | #define FONT_WIDTH(f) ((f)->tm.tmAveCharWidth) |
| 32 | #define FONT_HEIGHT(f) ((f)->tm.tmHeight) | 32 | #define FONT_HEIGHT(f) ((f)->tm.tmHeight) |