diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-04-08 14:29:12 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-04-08 14:29:13 -0700 |
commit | 8fdfaf0b2f882dea825f3f9abe92af13c45432a5 (patch) | |
tree | 7260a561a6c6f63be1205999fd8c9a0f5ea01c67 /Documentation/technical | |
parent | Merge branch 'nd/apply-report-skip' (diff) | |
parent | api-parse-options.txt: document OPT_CMDMODE() (diff) | |
download | tgif-8fdfaf0b2f882dea825f3f9abe92af13c45432a5.tar.xz |
Merge branch 'pb/opt-cmdmode-doc'
Minor API documentation update.
* pb/opt-cmdmode-doc:
api-parse-options.txt: document OPT_CMDMODE()
Diffstat (limited to 'Documentation/technical')
-rw-r--r-- | Documentation/technical/api-parse-options.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/technical/api-parse-options.txt b/Documentation/technical/api-parse-options.txt index 5f0757dcc9..695bd4bf43 100644 --- a/Documentation/technical/api-parse-options.txt +++ b/Documentation/technical/api-parse-options.txt @@ -231,6 +231,13 @@ There are some macros to easily define options: pass the command-line option, which can be specified multiple times, to another command. +`OPT_CMDMODE(short, long, &int_var, description, enum_val)`:: + Define an "operation mode" option, only one of which in the same + group of "operating mode" options that share the same `int_var` + can be given by the user. `enum_val` is set to `int_var` when the + option is used, but an error is reported if other "operating mode" + option has already set its value to the same `int_var`. + The last element of the array must be `OPT_END()`. |