st
simple terminal
git clone https://9o.is/git/st.git
commit 0316fe96e83c5276059f3d554bcbbe46615aca01 parent e44f256384834173e96a5492b288438e1b3bb98c Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Tue, 15 Apr 2014 08:11:47 +0200 Merge remote-tracking branch 'origin/master' into omaster Diffstat:
| M | st.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/st.c b/st.c @@ -3737,8 +3737,8 @@ run(void) { else cresize(xw.fw, xw.fh); - gettimeofday(&lastblink, NULL); gettimeofday(&last, NULL); + lastblink = last; for(xev = actionfps;;) { long deltatime; @@ -3773,7 +3773,7 @@ run(void) { if(blinktimeout && TIMEDIFF(now, lastblink) > blinktimeout) { tsetdirtattr(ATTR_BLINK); term.mode ^= MODE_BLINK; - gettimeofday(&lastblink, NULL); + lastblink = now; dodraw = 1; } deltatime = TIMEDIFF(now, last);