From 7837dcf6156fdb924896d7671343b26ab224b6e5 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Tue, 17 Dec 1996 15:26:40 +0000 Subject: [PATCH] Use RAW, not CBREAK --- usr.sbin/watch/watch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/watch/watch.c b/usr.sbin/watch/watch.c index 8add801f5796..50094e7fb93c 100644 --- a/usr.sbin/watch/watch.c +++ b/usr.sbin/watch/watch.c @@ -96,7 +96,7 @@ set_tty() ioctl(std_in, TIOCGETC, &tco); sgn = sgo; tc = tco; - sgn.sg_flags |= CBREAK; + sgn.sg_flags |= RAW; sgn.sg_flags &= ~ECHO; ospeed = sgo.sg_ospeed; tc.t_intrc = 17; /* ^Q */