@@ -5391,6 +5391,12 @@ static void prep_parse_options(struct diff_options *options)
5391
5391
OPT_CALLBACK_F ('G' , NULL , options , N_ ("<regex>" ),
5392
5392
N_ ("look for differences that change the number of occurrences of the specified regex" ),
5393
5393
0 , diff_opt_pickaxe_regex ),
5394
+ OPT_BIT_F (0 , "pickaxe-all" , & options -> pickaxe_opts ,
5395
+ N_ ("show all changes in the changeset with -S or -G" ),
5396
+ DIFF_PICKAXE_ALL , PARSE_OPT_NONEG ),
5397
+ OPT_BIT_F (0 , "pickaxe-regex" , & options -> pickaxe_opts ,
5398
+ N_ ("treat <string> in -S as extended POSIX regular expression" ),
5399
+ DIFF_PICKAXE_REGEX , PARSE_OPT_NONEG ),
5394
5400
{ OPTION_CALLBACK , 0 , "output" , options , N_ ("<file>" ),
5395
5401
N_ ("Output to a specific file" ),
5396
5402
PARSE_OPT_NONEG , NULL , 0 , diff_opt_output },
@@ -5443,10 +5449,6 @@ int diff_opt_parse(struct diff_options *options,
5443
5449
}
5444
5450
5445
5451
/* misc options */
5446
- else if (!strcmp (arg , "--pickaxe-all" ))
5447
- options -> pickaxe_opts |= DIFF_PICKAXE_ALL ;
5448
- else if (!strcmp (arg , "--pickaxe-regex" ))
5449
- options -> pickaxe_opts |= DIFF_PICKAXE_REGEX ;
5450
5452
else if ((argcount = short_opt ('O' , av , & optarg ))) {
5451
5453
options -> orderfile = prefix_filename (prefix , optarg );
5452
5454
return argcount ;
0 commit comments