diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-12-15 04:24:33 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-12-15 04:24:33 +0100 |
commit | bf29f074ed7019abb53398c4cd5659d9f939d9a8 (patch) | |
tree | 0980dba5e1b347ef0c2fad32cb36923dd64b83c5 /parse-options.h | |
parent | Merge branch 'js/t9902-send-email-completion-fix' into maint (diff) | |
parent | parse-options: fix SunCC compiler warning (diff) | |
download | git-bf29f074ed7019abb53398c4cd5659d9f939d9a8.tar.xz git-bf29f074ed7019abb53398c4cd5659d9f939d9a8.zip |
Merge branch 'nd/show-gitcomp-compilation-fix' into maint
Portability fix for a recent update to parse-options API.
* nd/show-gitcomp-compilation-fix:
parse-options: fix SunCC compiler warning
Diffstat (limited to 'parse-options.h')
-rw-r--r-- | parse-options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/parse-options.h b/parse-options.h index 6c4fe2016d..a650a7d220 100644 --- a/parse-options.h +++ b/parse-options.h @@ -208,6 +208,7 @@ extern int opterror(const struct option *opt, const char *reason, int flags); /*----- incremental advanced APIs -----*/ enum { + PARSE_OPT_COMPLETE = -2, PARSE_OPT_HELP = -1, PARSE_OPT_DONE, PARSE_OPT_NON_OPTION, |