irc: we send 7Fh for backspace these days...
This commit is contained in:
parent
689cbd9cba
commit
d8c8b2cc98
@ -502,7 +502,7 @@ int main(int argc, char * argv[]) {
|
||||
if (c < 0) {
|
||||
continue;
|
||||
}
|
||||
if (c == 0x08) {
|
||||
if (c == 0x08 || c == 0x7F) {
|
||||
/* Remove from buffer */
|
||||
if (buf_p) {
|
||||
buf[buf_p-1] = '\0';
|
||||
|
Loading…
x
Reference in New Issue
Block a user