Lines Matching refs:GoodStr

81 #define	GoodStr(a)	(el->el_terminal.t_str[a] != NULL && \  macro
223 EL_FLAGS |= GoodStr(T_ce) ? TERM_CAN_CEOL : 0; in terminal_setflags()
224 EL_FLAGS |= (GoodStr(T_dc) || GoodStr(T_DC)) ? TERM_CAN_DELETE : 0; in terminal_setflags()
225 EL_FLAGS |= (GoodStr(T_im) || GoodStr(T_ic) || GoodStr(T_IC)) ? in terminal_setflags()
227 EL_FLAGS |= (GoodStr(T_up) || GoodStr(T_UP)) ? TERM_CAN_UP : 0; in terminal_setflags()
231 if (GoodStr(T_me) && GoodStr(T_ue)) in terminal_setflags()
236 if (GoodStr(T_me) && GoodStr(T_se)) in terminal_setflags()
517 if ((del > 1) && GoodStr(T_DO)) { in terminal_move_to_line()
530 if (GoodStr(T_UP) && (-del > 1 || !GoodStr(T_up))) in terminal_move_to_line()
533 if (GoodStr(T_up)) in terminal_move_to_line()
569 if ((del < -4 || del > 4) && GoodStr(T_ch)) in terminal_move_to_char()
574 if ((del > 4) && GoodStr(T_RI)) in terminal_move_to_char()
611 if ((-del > 4) && GoodStr(T_LE)) in terminal_move_to_char()
708 if (GoodStr(T_DC)) /* if I have multiple delete */ in terminal_deletechars()
709 if ((num > 1) || !GoodStr(T_dc)) { /* if dc would be more in terminal_deletechars()
714 if (GoodStr(T_dm)) /* if I have delete mode */ in terminal_deletechars()
717 if (GoodStr(T_dc)) /* else do one at a time */ in terminal_deletechars()
721 if (GoodStr(T_ed)) /* if I have delete mode */ in terminal_deletechars()
749 if (GoodStr(T_IC)) /* if I have multiple insert */ in terminal_insertwrite()
750 if ((num > 1) || !GoodStr(T_ic)) { in terminal_insertwrite()
757 if (GoodStr(T_im) && GoodStr(T_ei)) { /* if I have insert mode */ in terminal_insertwrite()
765 if (GoodStr(T_ip)) /* have to make num chars insert */ in terminal_insertwrite()
772 if (GoodStr(T_ic)) /* have to make num chars insert */ in terminal_insertwrite()
779 if (GoodStr(T_ip)) /* have to make num chars insert */ in terminal_insertwrite()
795 if (EL_CAN_CEOL && GoodStr(T_ce)) in terminal_clear_EOL()
812 if (GoodStr(T_cl)) in terminal_clear_screen()
815 else if (GoodStr(T_ho) && GoodStr(T_cd)) { in terminal_clear_screen()
832 if (GoodStr(T_bl)) in terminal_beep()