allow ctrl-h as backspace - irc - IRC client based on c9x.me/irc client | |
git clone git://git.codemadness.org/irc | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 7cf5b1709a715eb8af0caadb3af229e04895a822 | |
parent f80202802bc1fb4d56f6ce27bcdeaf58d7d1cd1e | |
Author: xcko shrdlu <[email protected]> | |
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(-) | |
--- | |
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; |