• Home
  • Raw
  • Download

Lines Matching refs:GoodStr

87 #define	GoodStr(a)	(el->el_terminal.t_str[a] != NULL && \  macro
231 EL_FLAGS |= GoodStr(T_ce) ? TERM_CAN_CEOL : 0; in terminal_setflags()
232 EL_FLAGS |= (GoodStr(T_dc) || GoodStr(T_DC)) ? TERM_CAN_DELETE : 0; in terminal_setflags()
233 EL_FLAGS |= (GoodStr(T_im) || GoodStr(T_ic) || GoodStr(T_IC)) ? in terminal_setflags()
235 EL_FLAGS |= (GoodStr(T_up) || GoodStr(T_UP)) ? TERM_CAN_UP : 0; in terminal_setflags()
239 if (GoodStr(T_me) && GoodStr(T_ue)) in terminal_setflags()
244 if (GoodStr(T_me) && GoodStr(T_se)) in terminal_setflags()
520 if ((del > 1) && GoodStr(T_DO)) { in terminal_move_to_line()
533 if (GoodStr(T_UP) && (-del > 1 || !GoodStr(T_up))) in terminal_move_to_line()
536 if (GoodStr(T_up)) in terminal_move_to_line()
572 if ((del < -4 || del > 4) && GoodStr(T_ch)) in terminal_move_to_char()
577 if ((del > 4) && GoodStr(T_RI)) in terminal_move_to_char()
616 if ((-del > 4) && GoodStr(T_LE)) in terminal_move_to_char()
715 if (GoodStr(T_DC)) /* if I have multiple delete */ in terminal_deletechars()
716 if ((num > 1) || !GoodStr(T_dc)) { /* if dc would be more in terminal_deletechars()
721 if (GoodStr(T_dm)) /* if I have delete mode */ in terminal_deletechars()
724 if (GoodStr(T_dc)) /* else do one at a time */ in terminal_deletechars()
728 if (GoodStr(T_ed)) /* if I have delete mode */ in terminal_deletechars()
756 if (GoodStr(T_IC)) /* if I have multiple insert */ in terminal_insertwrite()
757 if ((num > 1) || !GoodStr(T_ic)) { in terminal_insertwrite()
764 if (GoodStr(T_im) && GoodStr(T_ei)) { /* if I have insert mode */ in terminal_insertwrite()
772 if (GoodStr(T_ip)) /* have to make num chars insert */ in terminal_insertwrite()
779 if (GoodStr(T_ic)) /* have to make num chars insert */ in terminal_insertwrite()
786 if (GoodStr(T_ip)) /* have to make num chars insert */ in terminal_insertwrite()
802 if (EL_CAN_CEOL && GoodStr(T_ce)) in terminal_clear_EOL()
819 if (GoodStr(T_cl)) in terminal_clear_screen()
822 else if (GoodStr(T_ho) && GoodStr(T_cd)) { in terminal_clear_screen()
839 if (GoodStr(T_bl)) in terminal_beep()