builtins: always pass prefix to parse_options()
commit836c8ceb7a4d26910a70a17ffba5a0d8b87bd1a1
authorJeff King <peff@peff.net>
Tue, 28 Mar 2023 20:54:32 +0000 (28 16:54 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 28 Mar 2023 21:11:24 +0000 (28 14:11 -0700)
tree200407e7f7e6f1aec11f0fc230d776e62e666522
parent9dc607f1c29de88bc5194df49cc7f834e528a3e9
builtins: always pass prefix to parse_options()

Our builtins receive a "prefix" argument as part of their cmd_foo()
function. We should always pass this to parse_options() if we're calling
it, as it may be used for OPT_FILENAME() options.

In the cases here, there's no option that would use it, so we're not
fixing any bug. This is just future-proofing and setting a good example
(plus quelling some -Wunused-parameter warnings).

Note in the case of revert/cherry-pick, that we plumb the prefix through
to run_sequencer(), as those builtins are just thin wrappers around it.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/mktag.c
builtin/revert.c