| 2253 | } |
| 2254 | |
| 2255 | static void read_pathspec_from_stdin(struct strbuf *sb, |
| 2256 | struct strvec *prune) |
| 2257 | { |
| 2258 | while (strbuf_getline(sb, stdin) != EOF) |
| 2259 | strvec_push(prune, sb->buf); |
| 2260 | } |
| 2261 | |
| 2262 | static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what) |
| 2263 | { |
no test coverage detected