From 27902d3ddd20b3b2ce1442425d322b276287801a Mon Sep 17 00:00:00 2001 From: Reginald Kennedy Date: Sat, 26 May 2012 18:14:23 +0800 Subject: [PATCH] Fix missing charset warnings with a less-constrained fallback font entry. --- spectrwm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spectrwm.c b/spectrwm.c index 1002ee6..4b1bcc8 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -264,7 +264,8 @@ double dialog_ratio = 0.6; #define SWM_BAR_FONTS "-*-terminus-medium-*-*-*-*-*-*-*-*-*-*-*," \ "-*-profont-*-*-*-*-*-*-*-*-*-*-*-*," \ "-*-times-medium-r-*-*-*-*-*-*-*-*-*-*," \ - "-misc-fixed-medium-r-*-*-*-*-*-*-*-*-*-*" + "-misc-fixed-medium-r-*-*-*-*-*-*-*-*-*-*," \ + "-*-*-*-r-*--*-*-*-*-*-*-*-*" #ifdef X_HAVE_UTF8_STRING #define DRAWSTRING(x...) Xutf8DrawString(x) -- 1.7.10.4