Deleted Added
full compact
teken_subr.h (186753) teken_subr.h (186798)
1/*-
2 * Copyright (c) 2008-2009 Ed Schouten <ed@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2008-2009 Ed Schouten <ed@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/syscons/teken/teken_subr.h 186753 2009-01-04 22:24:47Z ed $
26 * $FreeBSD: head/sys/dev/syscons/teken/teken_subr.h 186798 2009-01-05 22:09:46Z ed $
27 */
28
29static void teken_subr_cursor_up(teken_t *, unsigned int);
30static void teken_subr_erase_line(teken_t *, unsigned int);
31static void teken_subr_regular_character(teken_t *, teken_char_t);
32static void teken_subr_reset_to_initial_state(teken_t *);
33
34static inline int

--- 622 unchanged lines hidden (view full) ---

657 t->t_cursor.tp_row = t->t_scrollreg.ts_end - 1;
658 }
659
660 t->t_stateflags &= ~TS_WRAPPED;
661 teken_funcs_cursor(t);
662}
663
664static void
27 */
28
29static void teken_subr_cursor_up(teken_t *, unsigned int);
30static void teken_subr_erase_line(teken_t *, unsigned int);
31static void teken_subr_regular_character(teken_t *, teken_char_t);
32static void teken_subr_reset_to_initial_state(teken_t *);
33
34static inline int

--- 622 unchanged lines hidden (view full) ---

657 t->t_cursor.tp_row = t->t_scrollreg.ts_end - 1;
658 }
659
660 t->t_stateflags &= ~TS_WRAPPED;
661 teken_funcs_cursor(t);
662}
663
664static void
665teken_subr_newpage(teken_t *t)
666{
667#ifdef TEKEN_CONS25
668 teken_rect_t tr;
669
670 tr.tr_begin.tp_row = tr.tr_begin.tp_col = 0;
671 tr.tr_end = t->t_winsize;
672 teken_funcs_fill(t, &tr, BLANK, &t->t_curattr);
673
674 t->t_cursor.tp_row = t->t_cursor.tp_col = 0;
675 teken_funcs_cursor(t);
676#else /* !TEKEN_CONS25 */
677
678 teken_subr_newline(t);
679#endif /* TEKEN_CONS25 */
680}
681
682static void
665teken_subr_next_line(teken_t *t)
666{
667
668 t->t_cursor.tp_col = 0;
669 teken_subr_newline(t);
670}
671
672static void

--- 472 unchanged lines hidden ---
683teken_subr_next_line(teken_t *t)
684{
685
686 t->t_cursor.tp_col = 0;
687 teken_subr_newline(t);
688}
689
690static void

--- 472 unchanged lines hidden ---