Home
last modified time | relevance | path

Searched refs:r_cursor (Results 1 – 3 of 3) sorted by relevance

/NextBSD/lib/libedit/
HDrefresh.c100 el->el_refresh.r_cursor.h = 0; /* reset it. */ in re_nextline()
108 if (el->el_refresh.r_cursor.v + 1 >= el->el_terminal.t_size.v) { in re_nextline()
118 el->el_refresh.r_cursor.v++; in re_nextline()
120 ELRE_ASSERT(el->el_refresh.r_cursor.v >= el->el_terminal.t_size.v, in re_nextline()
122 el->el_refresh.r_cursor.v, el->el_terminal.t_size.v), in re_nextline()
136 if ((el->el_refresh.r_cursor.h & 07) == 0) in re_addc()
141 int oldv = el->el_refresh.r_cursor.v; in re_addc()
143 if (oldv == el->el_refresh.r_cursor.v) /* XXX */ in re_addc()
171 while (shift && (el->el_refresh.r_cursor.h + w > el->el_terminal.t_size.h)) in re_putc()
174 el->el_vdisplay[el->el_refresh.r_cursor.v] in re_putc()
[all …]
HDprompt.c113 elp->p_pos.v = el->el_refresh.r_cursor.v; in prompt_print()
114 elp->p_pos.h = el->el_refresh.r_cursor.h; in prompt_print()
HDrefresh.h47 coord_t r_cursor; /* Refresh cursor position */ member