Home | History | Annotate | Download | only in libedit

Lines Matching defs:del

493 	int del;
505 if ((del = where - el->el_cursor.v) > 0) {
510 for (; del > 0; del--)
514 } else { /* del < 0 */
515 if (GoodStr(T_UP) && (-del > 1 || !GoodStr(T_up)))
516 terminal_tputs(el, tgoto(Str(T_UP), -del, -del), -del);
519 for (; del < 0; del++)
533 int del, i;
551 del = where - el->el_cursor.h;
553 if ((del < -4 || del > 4) && GoodStr(T_ch))
557 if (del > 0) { /* moving forward */
558 if ((del > 4) && GoodStr(T_RI))
559 terminal_tputs(el, tgoto(Str(T_RI), del, del),
560 del);
595 } else { /* del < 0 := moving backward */
596 if ((-del > 4) && GoodStr(T_LE))
597 terminal_tputs(el, tgoto(Str(T_LE), -del, -del),
598 -del);
605 ((unsigned int)-del >
608 : (-del > where)) {
613 for (i = 0; i < -del; i++)