Home | History | Annotate | Download | only in src

Lines Matching defs:cur

204 	coord_t cur;
231 cur.h = -1; /* set flag in case I'm not set */
232 cur.v = 0;
257 cur.h = el->el_refresh.r_cursor.h;
258 cur.v = el->el_refresh.r_cursor.v;
262 cur.h = 0;
263 cur.v++;
269 if (cur.h == -1) { /* if I haven't been set yet, I'm at the end */
270 cur.h = el->el_refresh.r_cursor.h;
271 cur.v = el->el_refresh.r_cursor.v;
332 "\r\ncursor.h = %d, cursor.v = %d, cur.h = %d, cur.v = %d\r\n",
334 cur.h, cur.v));
335 terminal_move_to_line(el, cur.v); /* go to where the cursor is */
336 terminal_move_to_char(el, cur.h);