From ee2281df3851774fe4a862b79e3587a90a877395 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Tue, 15 Apr 2014 18:42:29 +1000 Subject: Minor comment fixes. --- handlekeys.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/handlekeys.c b/handlekeys.c index 8f5fad3..8bae529 100644 --- a/handlekeys.c +++ b/handlekeys.c @@ -20,7 +20,7 @@ struct key // This table includes some variations I have found on some terminals. // http://rtfm.etla.org/xterm/ctlseq.html has a useful guide. -// TODO - Don't think I got all the linux console variations. +// TODO - Don't think I got all the linux console or xterm variations. // TODO - Add more shift variations, plus Ctrl & Alt variations when needed. // TODO - tmux messes with the shift function keys somehow. // TODO - Add other miscelany that does not use an escape sequence. @@ -273,7 +273,7 @@ void handle_keys(long extra, int (*handle_event)(long extra, struct keyevent *ev } } - // Check for lone Esc first, wait a bit longer if it is + // Check for lone Esc first, wait a bit longer if it is. pendingEsc = ((0 == buffer[1]) && ('\x1B' == buffer[0])); if (pendingEsc) continue; -- cgit v1.1