Remove breakage of 1.8.2.2, choose slightly better character for quit.
This commit is contained in:
parent
78628421ee
commit
4526dad8be
@ -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>"
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user