diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-12-30 09:01:50 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-12-30 09:01:50 +0000 |
| commit | 33bdf4c4aeaea180c39afdd0b8b5905cb962f342 (patch) | |
| tree | 2386bb8e2d47baf1095b061afdfa91d832aae730 /usr.sbin/watch | |
| parent | 89eac9644c7968e0504c8a66691af6a405da4463 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/watch')
| -rw-r--r-- | usr.sbin/watch/watch.8 | 2 | ||||
| -rw-r--r-- | usr.sbin/watch/watch.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/watch/watch.8 b/usr.sbin/watch/watch.8 index a3f095c4db96..bf8f0da15fb7 100644 --- a/usr.sbin/watch/watch.8 +++ b/usr.sbin/watch/watch.8 @@ -61,7 +61,7 @@ Names may be preceded by "/dev/". While running in interactive mode, all user input is discarded except for: .Pp .Bl -tag -width "XXXX" -compact -.It Sy "<control-Q>" +.It Sy "<control-G>" Exit .Nm watch . .It Sy "<control-W>" diff --git a/usr.sbin/watch/watch.c b/usr.sbin/watch/watch.c index 50094e7fb93c..f544c0ebb2bb 100644 --- a/usr.sbin/watch/watch.c +++ b/usr.sbin/watch/watch.c @@ -96,11 +96,11 @@ set_tty() ioctl(std_in, TIOCGETC, &tco); sgn = sgo; tc = tco; - sgn.sg_flags |= RAW; + sgn.sg_flags |= CBREAK; sgn.sg_flags &= ~ECHO; ospeed = sgo.sg_ospeed; - tc.t_intrc = 17; /* ^Q */ - tc.t_quitc = 17; /* ^Q */ + tc.t_intrc = 07; /* ^G */ + tc.t_quitc = 07; /* ^G */ ioctl(std_in, TIOCSETP, &sgn); ioctl(std_in, TIOCSETC, &tc); } |
