aboutsummaryrefslogtreecommitdiff
path: root/builtin-shortlog.c
diff options
context:
space:
mode:
authorPierre Habouzit <madcoder@debian.org>2008-07-09 23:38:34 +0200
committerJunio C Hamano <gitster@pobox.com>2008-07-09 15:14:11 -0700
commit6b61ec0564993d2e60f7eb56c0f0fd9c313d5e2c (patch)
tree75d14aa978400c730ae6494055f189c04535df67 /builtin-shortlog.c
parent14ec9cbdae1991a14aa1cce251e44ea5cfee5ade (diff)
downloadgit-6b61ec0564993d2e60f7eb56c0f0fd9c313d5e2c.tar.gz
git-6b61ec0564993d2e60f7eb56c0f0fd9c313d5e2c.tar.xz
revisions: refactor handle_revision_opt into parse_revision_opt.
It seems we're using handle_revision_opt the same way each time, have a wrapper around it that does the 9-liner we copy each time instead. handle_revision_opt can be static in the module for now, it's always possible to make it public again if needed. Signed-off-by: Pierre Habouzit <madcoder@debian.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-shortlog.c')
-rw-r--r--builtin-shortlog.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/builtin-shortlog.c b/builtin-shortlog.c
index 9107bffb9..01362022c 100644
--- a/builtin-shortlog.c
+++ b/builtin-shortlog.c
@@ -255,21 +255,13 @@ int cmd_shortlog(int argc, const char **argv, const char *prefix)
PARSE_OPT_KEEP_ARGV0);
for (;;) {
- int n;
switch (parse_options_step(&ctx, options, shortlog_usage)) {
case PARSE_OPT_HELP:
exit(129);
case PARSE_OPT_DONE:
goto parse_done;
}
- n = handle_revision_opt(&rev, ctx.argc, ctx.argv,
- &ctx.cpidx, ctx.out);
- if (n <= 0) {
- error("unknown option `%s'", ctx.argv[0]);
- usage_with_options(shortlog_usage, options);
- }
- ctx.argv += n;
- ctx.argc -= n;
+ parse_revision_opt(&rev, &ctx, options, shortlog_usage);
}
parse_done:
argc = parse_options_end(&ctx);