Home
last modified time | relevance | path

Searched refs:match_chars (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/nvi/vi/
H A Dv_match.c41 const CHAR_T *match_chars; in v_match() local
49 match_chars = VIP(sp)->mcs; in v_match()
70 cp = STRCHR(match_chars, startc); in v_match()
72 cnt = cp - match_chars; in v_match()
73 matchc = match_chars[cnt ^ 1]; in v_match()
H A Dv_txt.c1217 CHAR_T *match_chars, *cp; in v_txt() local
1219 match_chars = VIP(sp)->mcs; in v_txt()
1220 cp = STRCHR(match_chars, evp->e_c); in v_txt()
1221 if (cp != NULL && (cp - match_chars) & 1) in v_txt()
/freebsd/contrib/libedit/
H A Dvi.c813 const wchar_t match_chars[] = L"()[]{}"; in vi_match() local
820 i = wcscspn(el->el_line.cursor, match_chars); in vi_match()
824 delta = (size_t)(wcschr(match_chars, o_ch) - match_chars); in vi_match()
825 c_ch = match_chars[delta ^ 1]; in vi_match()