Use a better default font specification. - sam - An updated version of the sam text editor.
 (HTM) git clone git://vernunftzentrum.de/sam.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit 6e3bec19eaac9e8f3f7f14492c9d680525d61ab4
 (DIR) parent 4e40c16f1a9abc8c426a65a69bc56800306439aa
 (HTM) Author: Rob King <jking@deadpixi.com>
       Date:   Thu, 11 Aug 2016 14:16:49 -0500
       
       Use a better default font specification.
       
       Diffstat:
         libXg/xtbinit.c                     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/libXg/xtbinit.c b/libXg/xtbinit.c
       @@ -177,7 +177,7 @@ xtbinit(Errfunc f, char *class, int *pargc, char **argv, char **fallbacks)
                    XtSetValues(widg, args, n);
            }
        
       -    font = XftFontOpenName(_dpy, DefaultScreen(_dpy), getenv("FONT") ? getenv("FONT") : "Mono");
       +    font = XftFontOpenName(_dpy, DefaultScreen(_dpy), getenv("FONT") ? getenv("FONT") : "monospace");
            screen.id = 0;
            XtRealizeWidget(_toplevel);