aboutsummaryrefslogtreecommitdiffhomepage
path: root/st.c
diff options
context:
space:
mode:
authorGravatar Christoph Lohmann <20h@r-36.net>2012-11-02 23:19:56 +0100
committerGravatar Christoph Lohmann <20h@r-36.net>2012-11-02 23:19:56 +0100
commit091ae143ce09e930fd61dae15f8d613c7eab5a61 (patch)
tree1b13477b28c15fca25efba9c57ebc7f7be8efbff /st.c
parentcd90969cab2d980977a76b79f936929834f2bdba (diff)
Fixing the italic-bold font check. Thanks nsz.
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index 8e0df08..8ef1346 100644
--- 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)) {