Deleted Added
full compact
teken_subr.h (197520) teken_subr.h (197521)
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/teken/teken_subr.h 197520 2009-09-26 15:03:42Z ed $
26 * $FreeBSD: head/sys/teken/teken_subr.h 197521 2009-09-26 15:07:11Z 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 *);
33static void teken_subr_save_cursor(teken_t *);
34

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

180 }
181}
182
183static void
184teken_subr_alignment_test(teken_t *t)
185{
186 teken_rect_t tr;
187
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 *);
33static void teken_subr_save_cursor(teken_t *);
34

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

180 }
181}
182
183static void
184teken_subr_alignment_test(teken_t *t)
185{
186 teken_rect_t tr;
187
188 t->t_cursor.tp_row = t->t_cursor.tp_col = 0;
188 t->t_scrollreg.ts_begin = 0;
189 t->t_scrollreg.ts_end = t->t_winsize.tp_row;
189 t->t_scrollreg.ts_begin = 0;
190 t->t_scrollreg.ts_end = t->t_winsize.tp_row;
190
191 t->t_cursor.tp_row = t->t_cursor.tp_col = 0;
192 t->t_stateflags &= ~TS_WRAPPED;
191 t->t_originreg = t->t_scrollreg;
192 t->t_stateflags &= ~(TS_WRAPPED|TS_ORIGIN);
193 teken_funcs_cursor(t);
194
195 tr.tr_begin.tp_row = 0;
196 tr.tr_begin.tp_col = 0;
197 tr.tr_end = t->t_winsize;
198 teken_funcs_fill(t, &tr, 'E', &t->t_defattr);
199}
200

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

983static void
984teken_subr_restore_cursor(teken_t *t)
985{
986
987 t->t_cursor = t->t_saved_cursor;
988 t->t_curattr = t->t_saved_curattr;
989 t->t_scs[t->t_curscs] = t->t_saved_curscs;
990 t->t_stateflags &= ~TS_WRAPPED;
193 teken_funcs_cursor(t);
194
195 tr.tr_begin.tp_row = 0;
196 tr.tr_begin.tp_col = 0;
197 tr.tr_end = t->t_winsize;
198 teken_funcs_fill(t, &tr, 'E', &t->t_defattr);
199}
200

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

983static void
984teken_subr_restore_cursor(teken_t *t)
985{
986
987 t->t_cursor = t->t_saved_cursor;
988 t->t_curattr = t->t_saved_curattr;
989 t->t_scs[t->t_curscs] = t->t_saved_curscs;
990 t->t_stateflags &= ~TS_WRAPPED;
991
992 /* Get out of origin mode when the cursor is moved outside. */
993 if (t->t_cursor.tp_row < t->t_originreg.ts_begin ||
994 t->t_cursor.tp_row >= t->t_originreg.ts_end) {
995 t->t_stateflags &= ~TS_ORIGIN;
996 t->t_originreg.ts_begin = 0;
997 t->t_originreg.ts_end = t->t_winsize.tp_row;
998 }
999
991 teken_funcs_cursor(t);
992}
993
994static void
995teken_subr_reverse_index(teken_t *t)
996{
997
998 if (t->t_cursor.tp_row > t->t_scrollreg.ts_begin) {

--- 244 unchanged lines hidden ---
1000 teken_funcs_cursor(t);
1001}
1002
1003static void
1004teken_subr_reverse_index(teken_t *t)
1005{
1006
1007 if (t->t_cursor.tp_row > t->t_scrollreg.ts_begin) {

--- 244 unchanged lines hidden ---