Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/dev/syscons/teken/teken_subr.h 186753 2009-01-04 22:24:47Z ed $
---
> * $FreeBSD: head/sys/dev/syscons/teken/teken_subr.h 186798 2009-01-05 22:09:46Z ed $
664a665,682
> teken_subr_newpage(teken_t *t)
> {
> #ifdef TEKEN_CONS25
> teken_rect_t tr;
>
> tr.tr_begin.tp_row = tr.tr_begin.tp_col = 0;
> tr.tr_end = t->t_winsize;
> teken_funcs_fill(t, &tr, BLANK, &t->t_curattr);
>
> t->t_cursor.tp_row = t->t_cursor.tp_col = 0;
> teken_funcs_cursor(t);
> #else /* !TEKEN_CONS25 */
>
> teken_subr_newline(t);
> #endif /* TEKEN_CONS25 */
> }
>
> static void