mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
parse-options: rename OPT_MAGNITUDE() to OPT_UNSIGNED()
With the preceding commit, `OPT_INTEGER()` has learned to support unit factors. Consequently, the major differencen between `OPT_INTEGER()` and `OPT_MAGNITUDE()` isn't the support of unit factors anymore, as both of them do support them now. Instead, the difference is that one handles signed and the other handles unsigned integers. Adapt the name of `OPT_MAGNITUDE()` accordingly by renaming it to `OPT_UNSIGNED()`. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
8ff1a34bdf
commit
785c17df78
@@ -25,7 +25,7 @@ enum parse_opt_type {
|
||||
/* options with arguments (usually) */
|
||||
OPTION_STRING,
|
||||
OPTION_INTEGER,
|
||||
OPTION_MAGNITUDE,
|
||||
OPTION_UNSIGNED,
|
||||
OPTION_CALLBACK,
|
||||
OPTION_LOWLEVEL_CALLBACK,
|
||||
OPTION_FILENAME
|
||||
@@ -270,8 +270,8 @@ struct option {
|
||||
#define OPT_CMDMODE(s, l, v, h, i) OPT_CMDMODE_F(s, l, v, h, i, 0)
|
||||
|
||||
#define OPT_INTEGER(s, l, v, h) OPT_INTEGER_F(s, l, v, h, 0)
|
||||
#define OPT_MAGNITUDE(s, l, v, h) { \
|
||||
.type = OPTION_MAGNITUDE, \
|
||||
#define OPT_UNSIGNED(s, l, v, h) { \
|
||||
.type = OPTION_UNSIGNED, \
|
||||
.short_name = (s), \
|
||||
.long_name = (l), \
|
||||
.value = (v), \
|
||||
|
||||
Reference in New Issue
Block a user