Home | History | Annotate | Download | only in src

Lines Matching defs:del

485 	int del;
498 if ((del = where - el->el_cursor.v) > 0) {
499 while (del > 0) {
518 del--;
520 if ((del > 1) && GoodStr(T_DO)) {
521 terminal_tputs(el, tgoto(Str(T_DO), del,
522 del), del);
523 del = 0;
525 for (; del > 0; del--)
532 } else { /* del < 0 */
533 if (GoodStr(T_UP) && (-del > 1 || !GoodStr(T_up)))
534 terminal_tputs(el, tgoto(Str(T_UP), -del, -del), -del);
537 for (; del < 0; del++)
551 int del, i;
570 del = where - el->el_cursor.h;
572 if ((del < -4 || del > 4) && GoodStr(T_ch))
576 if (del > 0) { /* moving forward */
577 if ((del > 4) && GoodStr(T_RI))
578 terminal_tputs(el, tgoto(Str(T_RI), del, del),
579 del);
615 } else { /* del < 0 := moving backward */
616 if ((-del > 4) && GoodStr(T_LE))
617 terminal_tputs(el, tgoto(Str(T_LE), -del, -del),
618 -del);
625 ((unsigned int)-del >
628 : (-del
633 for (i = 0; i < -del; i++)