Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
3283c6d2
Commit
3283c6d2
authored
Mar 09, 2016
by
Hisham Muhammad
Browse files
Merge pull request #441 from Explorer09/issue-438
Avoid overlapping key values defined by curses (Real fix).
parents
f295a52e
8a928c8b
Changes
2
Show whitespace changes
Inline
Side-by-side
CRT.c
View file @
3283c6d2
...
...
@@ -125,7 +125,7 @@ void CRT_fatalError(const char* note) __attribute__ ((noreturn));
void CRT_handleSIGSEGV(int sgn);
#define KEY_ALT(x) KEY_F(64) + (x - 'A')
#define KEY_ALT(x)
(
KEY_F(64
- 26
) + (x - 'A')
)
}*/
...
...
CRT.h
View file @
3283c6d2
...
...
@@ -115,7 +115,7 @@ void CRT_fatalError(const char* note) __attribute__ ((noreturn));
void
CRT_handleSIGSEGV
(
int
sgn
);
#define KEY_ALT(x) KEY_F(64) + (x - 'A')
#define KEY_ALT(x)
(
KEY_F(64
- 26
) + (x - 'A')
)
extern
const
char
*
CRT_treeStrAscii
[
TREE_STR_COUNT
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment