This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
st
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Fix blink mode check
ATTR_BLINK is an attribute for a Glyph and will not be set in term.mode.
master
Michael Forney
11 years ago
committed by
Roberto E. Vargas Caballero
parent
7e3cff33ff
commit
86c03ddc82
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
st.c
+ 2
- 2
st.c
View File
@ -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
)
;
}
}
Write
Preview
Loading…
Cancel
Save