aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/w32term.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32term.h b/src/w32term.h
index e64202549f7..f0292d28d94 100644
--- a/src/w32term.h
+++ b/src/w32term.h
@@ -35,7 +35,7 @@ Boston, MA 02111-1307, USA. */
35#define FONT_BASE(f) \ 35#define FONT_BASE(f) \
36 ((f)->bdf ? (f)->bdf->ury : (f)->tm.tmAscent) 36 ((f)->bdf ? (f)->bdf->ury : (f)->tm.tmAscent)
37#define FONT_DESCENT(f) \ 37#define FONT_DESCENT(f) \
38 ((f)->bdf ? (f)->bdf->lly : (f)->tm.tmDescent) 38 ((f)->bdf ? -((f)->bdf->lly) : (f)->tm.tmDescent)
39#define FONT_MAX_WIDTH(f) \ 39#define FONT_MAX_WIDTH(f) \
40 ((f)->bdf ? (f)->bdf->width : (f)->tm.tmMaxCharWidth) 40 ((f)->bdf ? (f)->bdf->width : (f)->tm.tmMaxCharWidth)
41 41