diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-07-02 21:33:52 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-10 01:42:22 +0200 |
commit | 8e676e8ba567eccee1510b90ec2e0364dcc2f3b4 (patch) | |
tree | 341634278902944c38c12eb1a39422f3f505f50c /revision.h | |
parent | sha1_name.c: introduce get_sha1_committish() (diff) | |
download | git-8e676e8ba567eccee1510b90ec2e0364dcc2f3b4.tar.xz git-8e676e8ba567eccee1510b90ec2e0364dcc2f3b4.zip |
revision.c: allow handle_revision_arg() to take other flags
The existing "cant_be_filename" that tells the function that the
caller knows the arg is not a path (hence it does not have to be
checked for absense of the file whose name matches it) is made into
a bit in the flag word.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/revision.h b/revision.h index b8e9223954..8eceaec65d 100644 --- a/revision.h +++ b/revision.h @@ -190,7 +190,8 @@ extern int setup_revisions(int argc, const char **argv, struct rev_info *revs, s extern void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx, const struct option *options, const char * const usagestr[]); -extern int handle_revision_arg(const char *arg, struct rev_info *revs,int flags,int cant_be_filename); +#define REVARG_CANNOT_BE_FILENAME 01 +extern int handle_revision_arg(const char *arg, struct rev_info *revs, int flags, unsigned revarg_opt); extern int prepare_revision_walk(struct rev_info *revs); extern struct commit *get_revision(struct rev_info *revs); |