From: Christoph Lohmann <20h@r-36.net>
Date: Sat, 3 Nov 2012 07:35:32 +0000 (+0100)
Subject: Now italic and bold works.
X-Git-Url: https://git.owens.tech/editable-focus.html/editable-focus.html/git?a=commitdiff_plain;h=76a8e5f72b542f230d7248c09efe202a12bc3771;p=st.git

Now italic and bold works.
---

diff --git a/st.c b/st.c
index d7a0fed..bfbe799 100644
--- a/st.c
+++ b/st.c
@@ -2423,7 +2423,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_BOLD))
+	if((base.mode & ATTR_ITALIC) && (base.mode & ATTR_BOLD))
 		font = &dc.ibfont;
 
 	if(IS_SET(MODE_REVERSE)) {