all repos — st @ 86c03ddc82d2f9f84f22f79741e13ade0e0b8cd1

st (suckless terminal) config

Fix blink mode check

ATTR_BLINK is an attribute for a Glyph and will not be set in term.mode.
Michael Forney mforney@mforney.org
commit

86c03ddc82d2f9f84f22f79741e13ade0e0b8cd1

parent

7e3cff33ffbd69a112fa4071a9f0ed2dc93bfc57

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M st.cst.c

@@ -3606,8 +3606,8 @@ if(FD_ISSET(cmdfd, &rfd)) {

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); } }