5 Jul
2010
5 Jul
'10
5:55 a.m.
Rich, Yes, it is. Jonathan
Is that this block of code?
int xgetkey(block) int block; { static int skipcount = 0; int ch; fd_set reads; int status; static struct timeval tout; tout.tv_sec = 0; tout.tv_usec = 500000; while (1) { #if 1 if (input_pending()) { ch = getachar(); if (ch == ESC) { return handleesc(); } else { return translatekey(ch); } } #endif /* ... */ }