diff options
author | ftrvxmtrx <devnull@localhost> | 2014-12-13 21:58:49 +0100 |
---|---|---|
committer | ftrvxmtrx <devnull@localhost> | 2014-12-13 21:58:49 +0100 |
commit | 96525edaae6e1fb076b4286fdd41032dafff651c (patch) | |
tree | f91610842c5ef64cbc22ef63a1755d699bad9b82 /sys/src/cmd/plot | |
parent | feb7702c9eba0eeb420dd08cbcdb4d922c1ba49c (diff) |
various cmds: replace magic numbers with Kdel/Keof, etc
Diffstat (limited to 'sys/src/cmd/plot')
-rw-r--r-- | sys/src/cmd/plot/plot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/cmd/plot/plot.c b/sys/src/cmd/plot/plot.c index 3633750ae..a7341c4e4 100644 --- a/sys/src/cmd/plot/plot.c +++ b/sys/src/cmd/plot/plot.c @@ -210,8 +210,8 @@ mouseproc(void*) case Akbd: switch(r){ case 'q': - case 0x7f: - case 0x04: + case Kdel: + case Keof: threadexitsall(""); } break; |