diff options
-rw-r--r-- | config.mk | 2 | ||||
-rw-r--r-- | main.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ # dmenu version -VERSION = 3.0 +VERSION = 3.1 # Customize below to fit your system @@ -135,6 +135,8 @@ initfont(const char *fontstr) { char *def, **missing; int i, n; + if(!fontstr || fontstr[0] == '\0') + eprint("error, cannot load font: '%s'\n", fontstr); missing = NULL; if(dc.font.set) XFreeFontSet(dpy, dc.font.set); |