allow ctrl-h as backspace - irc - Unnamed repository; edit this file 'descripti… | |
git clone git://vernunftzentrum.de/irc.git | |
Log | |
Files | |
Refs | |
README | |
--- | |
commit 7cf5b1709a715eb8af0caadb3af229e04895a822 | |
parent f80202802bc1fb4d56f6ce27bcdeaf58d7d1cd1e | |
Author: xcko shrdlu <[email protected]> | |
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(-) | |
--- | |
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; |