aboutsummaryrefslogtreecommitdiff
path: root/src/textadept.c
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2014-08-15 09:37:22 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2014-08-15 09:37:22 -0400
commit32693aa9a37b59c48836d05bde7ef591a902ace4 (patch)
tree3b00e95aae795f2f8ecd10438677d6a185dcd007 /src/textadept.c
parentde1c86f0b52ba5afb431f09895fab6b871aa9d0b (diff)
downloadtextadept-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.c3
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