Don't react to escape character in tincctl top.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 26 Jun 2011 10:58:50 +0000 (12:58 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 26 Jun 2011 10:58:50 +0000 (12:58 +0200)
Not only the ESC key generates an escape character, but many other keys
do as well, such as arrow keys.

doc/tinc.texi
doc/tincctl.8.in
src/top.c

index daf807b..15704a1 100644 (file)
@@ -2026,7 +2026,7 @@ Show amount of traffic in megabytes.
 @item G
 Show amount of traffic in gigabytes.
 
-@item q, ESC
+@item q
 Quit.
 
 @end table
index 6b550ae..ef0584e 100644 (file)
@@ -159,7 +159,7 @@ Show amount of traffic in kilobytes.
 Show amount of traffic in megabytes.
 .It Ic G
 Show amount of traffic in gigabytes.
-.It Ic q , ESC
+.It Ic q
 Quit.
 .El
 .Sh BUGS
index 5a9edb0..f14395e 100644 (file)
--- a/src/top.c
+++ b/src/top.c
@@ -305,7 +305,6 @@ void top(int fd) {
                                  scale = 1e-9;
                                  break;
                        case 'q':
-                       case 27:
                        case KEY_BREAK:
                                running = false;
                                break;