URI: 
       Fixing the italic-bold font check. Thanks nsz. - st - simple terminal
  HTML git clone https://git.parazyd.org/st
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 091ae143ce09e930fd61dae15f8d613c7eab5a61
   DIR parent cd90969cab2d980977a76b79f936929834f2bdba
  HTML Author: Christoph Lohmann <20h@r-36.net>
       Date:   Fri,  2 Nov 2012 23:19:56 +0100
       
       Fixing the italic-bold font check. Thanks nsz.
       
       Diffstat:
         M st.c                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/st.c b/st.c
       @@ -2408,7 +2408,7 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
        
                if(base.mode & ATTR_ITALIC)
                        font = &dc.ifont;
       -        if(base.mode & (ATTR_ITALIC|ATTR_ITALIC))
       +        if(base.mode & (ATTR_ITALIC|ATTR_BOLD))
                        font = &dc.ibfont;
        
                if(IS_SET(MODE_REVERSE)) {