| 562 | } |
| 563 | |
| 564 | protected int |
| 565 | tty_init(EditLine *el) |
| 566 | { |
| 567 | |
| 568 | el->el_tty.t_mode = EX_IO; |
| 569 | el->el_tty.t_vdisable = _POSIX_VDISABLE; |
| 570 | (void) memcpy(el->el_tty.t_t, ttyperm, sizeof(ttyperm_t)); |
| 571 | (void) memcpy(el->el_tty.t_c, ttychar, sizeof(ttychar_t)); |
| 572 | return tty_setup(el); |
| 573 | } |
| 574 | |
| 575 | |
| 576 | /* tty_end(): |
no test coverage detected