From: Michael Forney <mforney@mforney.org>
Date: Thu, 25 Jul 2013 23:24:16 +0000 (-0700)
Subject: Fix blink mode check
X-Git-Url: https://git.xinqibao.xyz/st.git/commitdiff_plain/86c03ddc82d2f9f84f22f79741e13ade0e0b8cd1?hp=7e3cff33ffbd69a112fa4071a9f0ed2dc93bfc57

Fix blink mode check

ATTR_BLINK is an attribute for a Glyph and will not be set in term.mode.
---

diff --git a/st.c b/st.c
index 6756f76..b63d865 100644
--- a/st.c
+++ b/st.c
@@ -3606,8 +3606,8 @@ run(void) {
 			ttyread();
 			if(blinktimeout) {
 				blinkset = tattrset(ATTR_BLINK);
-				if(!blinkset && term.mode & ATTR_BLINK)
-					term.mode &= ~(MODE_BLINK);
+				if(!blinkset)
+					MODBIT(term.mode, 0, MODE_BLINK);
 			}
 		}