Skip to content
Snippets Groups Projects
Commit e36c671a authored by deuce's avatar deuce
Browse files

Fix old signal-based redraw bug. (Doesn't use signals anymore!)

parent ba68c367
No related branches found
No related tags found
No related merge requests found
......@@ -882,12 +882,6 @@ video_event(XEvent *ev)
goto docode;
default:
if ((K1_STATUS&(K1_ALT|K1_CTRL)) == (K1_ALT|K1_CTRL)) {
if (ks == 'R' || ks == 'r') {
kill(getpid(), SIGALRM); /* redraw */
break;
}
}
if (ks < ' ' || ks > '~')
break;
scan = Ascii2Scan[ks];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment