stty: DEL is the default for VERASE

This commit is contained in:
K. Lange 2018-10-26 13:40:40 +09:00
parent 092ca7c196
commit 089d5235c3

View File

@ -110,7 +110,7 @@ static int show_settings(int all) {
/* Keys */
print_cc(&t, "intr", VINTR, 3);
print_cc(&t, "quit", VQUIT, 28);
print_cc(&t, "erase", VERASE, '\b');
print_cc(&t, "erase", VERASE, 0x7F);
print_cc(&t, "kill", VKILL, 21);
print_cc(&t, "eof", VEOF, 4);
print_cc(&t, "eol", VEOL, 0);