On Wed, Sep 19, 2007 at 12:29:19AM +0200, y i y u s wrote: > 2007/9/18, Anselm R. Garbe <[EMAIL PROTECTED]>: > > Hi there, > > > > I keep in mind testing the togglemax-patch, but please let me > > know any issues in hg tip. > > > > Fallback to fixed font isn't working here. It looks like you are > checking the error with an or instead of an and, in initfont: > > if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)) > || !(dc.font.xfont = XLoadQueryFont(dpy, "fixed"))) > > and imo it should be: > > if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)) > && !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
Fixed in hg tip! Thank you! Regards, -- Anselm R. Garbe >< http://www.suckless.org/ >< GPG key: 0D73F361
