Changed quit key sequence to ctrl-g + q

Changed the quit key sequence from ctrl-g + ctrl-q to ctrl-g + q as the
latter is simpler and considered more conventional.
This commit is contained in:
Martin Lund 2014-10-08 19:25:35 +02:00
parent a125dca499
commit 2cf211b99f
3 changed files with 8 additions and 8 deletions

View file

@ -22,8 +22,8 @@
#ifndef TTY_H
#define TTY_H
#define CTRLG 0x07
#define CTRLQ 0x11
#define KEY_CTRL_G 0x07
#define KEY_Q 0x71
void configure_stdout(void);
void restore_stdout(void);