From a5dbb39dac2022d1cbc4d3a28fe42f653c35cc48 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 6 Jul 2000 19:11:34 +0000 Subject: Change order. -Erik --- init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'init.c') diff --git a/init.c b/init.c index 7236cf851..c960fe333 100644 --- a/init.c +++ b/init.c @@ -239,10 +239,10 @@ void set_term(int fd) tty.c_cc[VERASE] = CTRLCHAR('?'); /* Ctrl-? */ tty.c_cc[VKILL] = CTRLCHAR('U'); /* Ctrl-U */ tty.c_cc[VEOF] = CTRLCHAR('D'); /* Ctrl-D */ - tty.c_cc[VSTOP] = CTRLCHAR('S'); /* Ctrl-S */ tty.c_cc[VSTART] = CTRLCHAR('Q'); /* Ctrl-Q */ + tty.c_cc[VSTOP] = CTRLCHAR('S'); /* Ctrl-S */ tty.c_cc[VSUSP] = CTRLCHAR('Z'); /* Ctrl-Z */ - + /* use line dicipline 0 */ tty.c_line = 0; -- cgit v1.2.3