| 745 | } |
| 746 | |
| 747 | static void ttydisc_reprint(struct lwp_tty *tp) |
| 748 | { |
| 749 | cc_t c; |
| 750 | |
| 751 | /* Print ^R\n, followed by the line. */ |
| 752 | c = tp->t_termios.c_cc[VREPRINT]; |
| 753 | if (c != _POSIX_VDISABLE) |
| 754 | ttydisc_echo(tp, c, 0); |
| 755 | ttydisc_echo(tp, CNL, 0); |
| 756 | ttyinq_reprintpos_reset(&tp->t_inq); |
| 757 | |
| 758 | ttyinq_line_iterate_from_linestart(&tp->t_inq, ttydisc_reprint_char, tp); |
| 759 | } |
| 760 | |
| 761 | struct ttydisc_recalc_length |
| 762 | { |
no test coverage detected