Mercurial > emacs
comparison src/w32bdf.c @ 39682:5f60884970a8
Don't define min/max.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 08 Oct 2001 08:07:49 +0000 |
parents | bc25122cbfe4 |
children | 90840766f5fb |
comparison
equal
deleted
inserted
replaced
39681:87cc624f4e1e | 39682:5f60884970a8 |
---|---|
31 #include "fontset.h" | 31 #include "fontset.h" |
32 #include "blockinput.h" | 32 #include "blockinput.h" |
33 #include "w32gui.h" | 33 #include "w32gui.h" |
34 #include "w32term.h" | 34 #include "w32term.h" |
35 #include "w32bdf.h" | 35 #include "w32bdf.h" |
36 | |
37 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
38 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
39 | 36 |
40 /* 10 planes */ | 37 /* 10 planes */ |
41 #define BDF_CODEPOINT_HEAP_INITIAL_SIZE (96 * 10) | 38 #define BDF_CODEPOINT_HEAP_INITIAL_SIZE (96 * 10) |
42 /* about 96 characters */ | 39 /* about 96 characters */ |
43 #define BDF_BITMAP_HEAP_INITIAL_SIZE (64 * 96) | 40 #define BDF_BITMAP_HEAP_INITIAL_SIZE (64 * 96) |