Lines Matching refs:GoodStr
96 #define GoodStr(a) (el->el_terminal.t_str[a] != NULL && \ macro
240 EL_FLAGS |= GoodStr(T_ce) ? TERM_CAN_CEOL : 0; in terminal_setflags()
241 EL_FLAGS |= (GoodStr(T_dc) || GoodStr(T_DC)) ? TERM_CAN_DELETE : 0; in terminal_setflags()
242 EL_FLAGS |= (GoodStr(T_im) || GoodStr(T_ic) || GoodStr(T_IC)) ? in terminal_setflags()
244 EL_FLAGS |= (GoodStr(T_up) || GoodStr(T_UP)) ? TERM_CAN_UP : 0; in terminal_setflags()
248 if (GoodStr(T_me) && GoodStr(T_ue)) in terminal_setflags()
253 if (GoodStr(T_me) && GoodStr(T_se)) in terminal_setflags()
515 if (GoodStr(T_UP) && (-del > 1 || !GoodStr(T_up))) in terminal_move_to_line()
518 if (GoodStr(T_up)) in terminal_move_to_line()
553 if ((del < -4 || del > 4) && GoodStr(T_ch)) in terminal_move_to_char()
558 if ((del > 4) && GoodStr(T_RI)) in terminal_move_to_char()
596 if ((-del > 4) && GoodStr(T_LE)) in terminal_move_to_char()
694 if (GoodStr(T_DC)) /* if I have multiple delete */ in terminal_deletechars()
695 if ((num > 1) || !GoodStr(T_dc)) { /* if dc would be more in terminal_deletechars()
700 if (GoodStr(T_dm)) /* if I have delete mode */ in terminal_deletechars()
703 if (GoodStr(T_dc)) /* else do one at a time */ in terminal_deletechars()
707 if (GoodStr(T_ed)) /* if I have delete mode */ in terminal_deletechars()
735 if (GoodStr(T_IC)) /* if I have multiple insert */ in terminal_insertwrite()
736 if ((num > 1) || !GoodStr(T_ic)) { in terminal_insertwrite()
743 if (GoodStr(T_im) && GoodStr(T_ei)) { /* if I have insert mode */ in terminal_insertwrite()
751 if (GoodStr(T_ip)) /* have to make num chars insert */ in terminal_insertwrite()
758 if (GoodStr(T_ic)) /* have to make num chars insert */ in terminal_insertwrite()
765 if (GoodStr(T_ip)) /* have to make num chars insert */ in terminal_insertwrite()
781 if (EL_CAN_CEOL && GoodStr(T_ce)) in terminal_clear_EOL()
798 if (GoodStr(T_cl)) in terminal_clear_screen()
801 else if (GoodStr(T_ho) && GoodStr(T_cd)) { in terminal_clear_screen()
818 if (GoodStr(T_bl)) in terminal_beep()