| 1007 | } |
| 1008 | |
| 1009 | static int open_callback(const struct option *opt, const char *arg, int unset) |
| 1010 | { |
| 1011 | struct grep_opt *grep_opt = opt->value; |
| 1012 | BUG_ON_OPT_NEG(unset); |
| 1013 | BUG_ON_OPT_ARG(arg); |
| 1014 | append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN); |
| 1015 | return 0; |
| 1016 | } |
| 1017 | |
| 1018 | static int close_callback(const struct option *opt, const char *arg, int unset) |
| 1019 | { |
nothing calls this directly
no test coverage detected