From 3b0efa93ada93eb9415d28c7c3bdf4bf9c7b79aa Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Wed, 17 May 2017 22:14:27 -0400 Subject: [PATCH] change line spacing to 0 on osx --- inc/edit.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/inc/edit.h b/inc/edit.h index 857a1e0..e4a2b1f 100644 --- a/inc/edit.h +++ b/inc/edit.h @@ -213,7 +213,11 @@ enum { BufSize = 8192, /* default buffer size */ FontCacheSize = 16, /* Maximum number of fonts allowed in the font cache */ EventTimeout = 100, /* Maximum blocking wait time for events */ +#ifdef __MACH__ + LineSpacing = 0, /* Number of pixels for spacing between lines */ +#else LineSpacing = 2, /* Number of pixels for spacing between lines */ +#endif }; /* choose the font to use for xft */ -- 2.51.0