diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2010-11-08 18:58:51 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-11-15 09:57:37 -0800 |
commit | e21adb8c100cd2859cff1d74f7d0e622ac640085 (patch) | |
tree | 0dc6a3b9858d1c472ad153430950b0c638b2cc3e /parse-options.h | |
parent | fd03881a48fc31197ab3343ac2f02ed0cdbbbaaf (diff) | |
download | git-e21adb8c100cd2859cff1d74f7d0e622ac640085.tar.gz |
add description parameter to OPT__DRY_RUN
Allows better help text to be defined than "dry run". Also make use
of the macro in places that already had a different description. No
object code changes intended.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'parse-options.h')
-rw-r--r-- | parse-options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-options.h b/parse-options.h index 14918b16e5..69ce094158 100644 --- a/parse-options.h +++ b/parse-options.h @@ -205,7 +205,7 @@ extern int parse_opt_tertiary(const struct option *, const char *, int); PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }, \ { OPTION_CALLBACK, 'q', "quiet", (var), NULL, "be more quiet", \ PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 } -#define OPT__DRY_RUN(var) OPT_BOOLEAN('n', "dry-run", (var), "dry run") +#define OPT__DRY_RUN(var, h) OPT_BOOLEAN('n', "dry-run", (var), (h)) #define OPT__ABBREV(var) \ { OPTION_CALLBACK, 0, "abbrev", (var), "n", \ "use <n> digits to display SHA-1s", \ |