diff options
author | 2014-08-15 09:37:22 -0400 | |
---|---|---|
committer | 2014-08-15 09:37:22 -0400 | |
commit | 32693aa9a37b59c48836d05bde7ef591a902ace4 (patch) | |
tree | 3b00e95aae795f2f8ecd10438677d6a185dcd007 /src/textadept.c | |
parent | de1c86f0b52ba5afb431f09895fab6b871aa9d0b (diff) | |
download | textadept-32693aa9a37b59c48836d05bde7ef591a902ace4.tar.gz textadept-32693aa9a37b59c48836d05bde7ef591a902ace4.zip |
Reverted separating ^H from Backspace in the terminal version.
Diffstat (limited to 'src/textadept.c')
-rw-r--r-- | src/textadept.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/textadept.c b/src/textadept.c index 0812db16..b0c94b1e 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -51,7 +51,7 @@ #include "windowman.h" #include "cdk_int.h" #if !_WIN32 -#include "termkey-internal.h" +#include "termkey.h" #endif #endif @@ -2390,7 +2390,6 @@ int main(int argc, char **argv) { #elif CURSES #if !_WIN32 ta_tk = termkey_new(0, 0); - ta_tk->c0[0x08].sym = TERMKEY_SYM_UNKNOWN; // prevent Backspace to ^H mapping #endif setlocale(LC_CTYPE, ""); // for displaying UTF-8 characters properly initscr(); // raw()/cbreak() and noecho() are taken care of in libtermkey |