diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-08-12 14:09:57 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-12 14:09:57 -0700 |
commit | 535efaf6beb039b9f3b6f6c0f2b526eb8d02f99b (patch) | |
tree | c9b7b2e0d1880573a19a3e67fab00d9820ec7a96 | |
parent | Merge branch 'dt/unpack-trees-cache-tree-revalidate' (diff) | |
parent | parse-options: align curly braces for all options (diff) | |
download | tgif-535efaf6beb039b9f3b6f6c0f2b526eb8d02f99b.tar.xz |
Merge branch 'sb/parse-options-codeformat'
* sb/parse-options-codeformat:
parse-options: align curly braces for all options
-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 6ca8388a53..3f1cc3aee0 100644 --- a/parse-options.h +++ b/parse-options.h @@ -127,7 +127,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_MAGNITUDE(s, l, v, h) { OPTION_MAGNITUDE, (s), (l), (v), \ |