Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-08-13 00:09:57 +0300
committerJunio C Hamano <gitster@pobox.com>2015-08-13 00:09:57 +0300
commit535efaf6beb039b9f3b6f6c0f2b526eb8d02f99b (patch)
treec9b7b2e0d1880573a19a3e67fab00d9820ec7a96 /parse-options.h
parent9ad8474b986b0295df6ba1455daa611a7a49a49e (diff)
parent14691e382774d459d0103feb57c07a58f9221e4a (diff)
Merge branch 'sb/parse-options-codeformat'
* sb/parse-options-codeformat: parse-options: align curly braces for all options
Diffstat (limited to 'parse-options.h')
-rw-r--r--parse-options.h2
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), \