adding default value for suspend key : CTRL(Z)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18940 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2006-09-25 23:38:19 +00:00
parent dc0bf743e1
commit 8e70f1aa5b
1 changed files with 1 additions and 0 deletions

View File

@ -684,6 +684,7 @@ reset_termios(struct termios &termios)
termios.c_cc[VEOF] = CTRL('D');
termios.c_cc[VSTART] = CTRL('S');
termios.c_cc[VSTOP] = CTRL('Q');
termios.c_cc[VSUSP] = CTRL('Z');
}