allow ctrl-h as backspace - irc - IRC client based on c9x.me/irc client
HTML git clone git://git.codemadness.org/irc
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 7cf5b1709a715eb8af0caadb3af229e04895a822
DIR parent f80202802bc1fb4d56f6ce27bcdeaf58d7d1cd1e
HTML Author: xcko shrdlu <xcko@bitmessage.ch>
Date: Sun, 6 Nov 2016 01:47:24 -0700
allow ctrl-h as backspace
Diffstat:
M 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;