Avoid overlapping key values defined by curses.

Closes #438.
This commit is contained in:
Hisham 2016-03-08 12:23:18 -03:00
parent e2ccc7b240
commit f295a52ed9
2 changed files with 2 additions and 2 deletions

2
CRT.c
View File

@ -125,7 +125,7 @@ void CRT_fatalError(const char* note) __attribute__ ((noreturn));
void CRT_handleSIGSEGV(int sgn);
#define KEY_ALT(x) KEY_F(60) + (x - 'A')
#define KEY_ALT(x) KEY_F(64) + (x - 'A')
}*/

2
CRT.h
View File

@ -115,7 +115,7 @@ void CRT_fatalError(const char* note) __attribute__ ((noreturn));
void CRT_handleSIGSEGV(int sgn);
#define KEY_ALT(x) KEY_F(60) + (x - 'A')
#define KEY_ALT(x) KEY_F(64) + (x - 'A')
extern const char *CRT_treeStrAscii[TREE_STR_COUNT];