From: pcasaretto <paulo.casaretto@xxxxxxxxxxx> Reorder the command-line options in builtin/range-diff.c to be in lexicographic order for better organization and readability. This is a preparatory cleanup with no functional changes. Signed-off-by: Paulo Casaretto <paulo.casaretto@xxxxxxxxxxx> --- builtin/range-diff.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/builtin/range-diff.c b/builtin/range-diff.c index a563abff5fee..283583a80d0b 100644 --- a/builtin/range-diff.c +++ b/builtin/range-diff.c @@ -33,17 +33,17 @@ int cmd_range_diff(int argc, OPT_INTEGER(0, "creation-factor", &range_diff_opts.creation_factor, N_("percentage by which creation is weighted")), + OPT_PASSTHRU_ARGV(0, "diff-merges", &diff_merges_arg, + N_("style"), N_("passed to 'git log'"), 0), + OPT_BOOL(0, "left-only", &left_only, + N_("only emit output related to the first range")), OPT_BOOL(0, "no-dual-color", &simple_color, N_("use simple diff colors")), OPT_PASSTHRU_ARGV(0, "notes", &other_arg, N_("notes"), N_("passed to 'git log'"), PARSE_OPT_OPTARG), - OPT_PASSTHRU_ARGV(0, "diff-merges", &diff_merges_arg, - N_("style"), N_("passed to 'git log'"), 0), OPT_PASSTHRU_ARGV(0, "remerge-diff", &diff_merges_arg, NULL, N_("passed to 'git log'"), PARSE_OPT_NOARG), - OPT_BOOL(0, "left-only", &left_only, - N_("only emit output related to the first range")), OPT_BOOL(0, "right-only", &right_only, N_("only emit output related to the second range")), OPT_END() -- gitgitgadget