diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-08-19 14:41:33 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-19 14:41:34 -0700 |
commit | b994b9bc0b5e72da1158ad159c068cacaaef2eda (patch) | |
tree | eab016b1d1b1947df891bf7a3d240d2a19090933 /parse-options.h | |
parent | 223b55a577dc37dcf2df7962497655ce4ebbb9e0 (diff) | |
parent | 14691e382774d459d0103feb57c07a58f9221e4a (diff) | |
download | git-b994b9bc0b5e72da1158ad159c068cacaaef2eda.tar.gz git-b994b9bc0b5e72da1158ad159c068cacaaef2eda.tar.xz |
Merge branch 'sb/parse-options-codeformat' into maint
* sb/parse-options-codeformat:
parse-options: align curly braces for all options
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 c71e9da4f..08d781893 100644 --- a/parse-options.h +++ b/parse-options.h @@ -126,7 +126,7 @@ struct option { #define OPT_BOOL(s, l, v, h) OPT_SET_INT(s, l, v, h, 1) #define OPT_HIDDEN_BOOL(s, l, v, h) { OPTION_SET_INT, (s), (l), (v), NULL, \ (h), PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, NULL, 1} -#define OPT_CMDMODE(s, l, v, h, i) { OPTION_CMDMODE, (s), (l), (v), NULL, \ +#define OPT_CMDMODE(s, l, v, h, i) { OPTION_CMDMODE, (s), (l), (v), NULL, \ (h), PARSE_OPT_NOARG|PARSE_OPT_NONEG, NULL, (i) } #define OPT_INTEGER(s, l, v, h) { OPTION_INTEGER, (s), (l), (v), N_("n"), (h) } #define OPT_STRING(s, l, v, a, h) { OPTION_STRING, (s), (l), (v), (a), (h) } |