diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-28 22:48:00 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-28 22:48:00 -0800 |
| commit | e99a904f2f334b1bca9d2b4f2f570cf4b35cfe4a (patch) | |
| tree | 16c47e2e5e702fdd00c5db0c60e07afe2cba7551 | |
| parent | 000ef2dc58416cd09dc177ab863a2d6f1ab9ba28 (diff) | |
Fixed macro backslash
| -rw-r--r-- | terminal.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ typedef enum { #define KEY_ENTER 0x0D // clash with ^M #define KEY_ESC 0x1B // clash with ^[ #define KEY_CTRL_3 0x1B // clash with ^[ -#define KEY_CTRL_4 0x1C // clash with ^\ +#define KEY_CTRL_4 0x1C // clash with ^\ (backslash) #define KEY_CTRL_5 0x1D // clash with ^] #define KEY_CTRL_TILDE 0x1E // clash with ^^ #define KEY_CTRL_6 0x1E // clash with ^^ |
