allow ctrl-h as backspace - irc - Unnamed repository; edit this file 'description' to name the repository.
(HTM) git clone git://vernunftzentrum.de/irc.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) commit 7cf5b1709a715eb8af0caadb3af229e04895a822
(DIR) parent f80202802bc1fb4d56f6ce27bcdeaf58d7d1cd1e
(HTM) Author: xcko shrdlu <xcko@bitmessage.ch>
Date: Sun, 6 Nov 2016 01:47:24 -0700
allow ctrl-h as backspace
Diffstat:
irc.c | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
(DIR) diff --git a/irc.c b/irc.c
@@ -677,6 +677,7 @@ tgetch(void)
dirty = cu;
len--;
break;
+ case CTRL('h'):
case KEY_BACKSPACE:
if (cu == 0)
return;