Merge branch 'rs/grep-no-no-or'
"git grep -e A --no-or -e B" is accepted, even though the negation of "or" did not mean anything, which has been tightened. * rs/grep-no-no-or: grep: reject --no-ormaint
commit
921a713d66
|
@ -989,7 +989,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||||
OPT_CALLBACK_F(0, "and", &opt, NULL,
|
OPT_CALLBACK_F(0, "and", &opt, NULL,
|
||||||
N_("combine patterns specified with -e"),
|
N_("combine patterns specified with -e"),
|
||||||
PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback),
|
PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback),
|
||||||
OPT_BOOL(0, "or", &dummy, ""),
|
OPT_BOOL_F(0, "or", &dummy, "", PARSE_OPT_NONEG),
|
||||||
OPT_CALLBACK_F(0, "not", &opt, NULL, "",
|
OPT_CALLBACK_F(0, "not", &opt, NULL, "",
|
||||||
PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback),
|
PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback),
|
||||||
OPT_CALLBACK_F('(', NULL, &opt, NULL, "",
|
OPT_CALLBACK_F('(', NULL, &opt, NULL, "",
|
||||||
|
|
Loading…
Reference in New Issue