Searched defs:ttyold (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/tabs/
H A Dtabs.c116 static struct termio ttyold; /* tty table */ variable in typeref:struct:termio
154 if (ioctl(1, TCGETA, &ttyold) == 0) {
155 ttyisave = ttyold.c_iflag;
156 ttyosave = ttyold.c_oflag;
531 ttyold.c_iflag &= ~ICRNL;
532 ttyold.c_oflag &= ~(ONLCR|OCRNL|ONOCR|ONLRET);
533 (void) ioctl(1, TCSETAW, &ttyold); /* turn off cr-lf map */
688 ttyold.c_iflag = ttyisave;
689 ttyold.c_oflag = ttyosave;
691 (void) ioctl(1, TCSETAW, &ttyold);
[all...]

Completed in 46 milliseconds