aboutsummaryrefslogtreecommitdiffhomepage
path: root/st.c
diff options
context:
space:
mode:
authorGravatar Michael Forney <mforney@mforney.org>2013-07-25 16:24:16 -0700
committerGravatar Roberto E. Vargas Caballero <k0ga@shike2.com>2013-08-05 11:45:52 +0200
commit86c03ddc82d2f9f84f22f79741e13ade0e0b8cd1 (patch)
tree85a6d36b98b4a6bd5a77466d5022863699def95f /st.c
parent7e3cff33ffbd69a112fa4071a9f0ed2dc93bfc57 (diff)
Fix blink mode check
ATTR_BLINK is an attribute for a Glyph and will not be set in term.mode.
Diffstat (limited to 'st.c')
-rw-r--r--st.c4
1 files changed, 2 insertions, 2 deletions
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);
}
}