Lines Matching refs:edit
36 struct edit struct
38 struct edit* next; argument
46 struct edit* edit; member
262 struct edit* edit; in ppcontrol() local
550 for (edit = map->edit; edit; edit = edit->next) in ppcontrol()
551 if (!(i0 = regexec(&edit->re, p, elementsof(match), match, 0))) in ppcontrol()
554 if (i0 = regsubexec(&edit->re, p, elementsof(match), match)) in ppcontrol()
555 regfatal(&edit->re, 3, i0); in ppcontrol()
556 p = edit->re.re_sub->re_buf; in ppcontrol()
557 if (edit->re.re_sub->re_flags & REG_SUB_STOP) in ppcontrol()
561 regfatal(&edit->re, 3, i0); in ppcontrol()
1917 edit = 0; in ppcontrol()
1925 if (edit) in ppcontrol()
1926 edit = edit->next = newof(0, struct edit, 1, 0); in ppcontrol()
1928 edit = map->edit = newof(0, struct edit, 1, 0); in ppcontrol()
1929 …if (!(i0 = regcomp(&edit->re, s, REG_AUGMENTED|REG_DELIMITED|REG_LENIENT|REG_NULL)) && !(i0 = regs… in ppcontrol()
1930 s += edit->re.re_npat; in ppcontrol()
1932 regfatal(&edit->re, 3, i0); in ppcontrol()