Home
last modified time | relevance | path

Searched refs:ttyold (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/tabs/
H A Dtabs.c114 static struct termio ttyold; /* tty table */ variable
152 if (ioctl(1, TCGETA, &ttyold) == 0) { in main()
153 ttyisave = ttyold.c_iflag; in main()
154 ttyosave = ttyold.c_oflag; in main()
529 ttyold.c_iflag &= ~ICRNL; in settabs()
530 ttyold.c_oflag &= ~(ONLCR|OCRNL|ONOCR|ONLRET); in settabs()
531 (void) ioctl(1, TCSETAW, &ttyold); /* turn off cr-lf map */ in settabs()
686 ttyold.c_iflag = ttyisave; in endup()
687 ttyold.c_oflag = ttyosave; in endup()
689 (void) ioctl(1, TCSETAW, &ttyold); in endup()