From: Johannes Sixt Date: Thu, 10 Apr 2008 11:33:08 +0000 (+0200) Subject: builtin-commit.c: Remove a redundant assignment. X-Git-Tag: v1.5.6-rc0~152 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=3c5283f8b19aaba3a6105fa486cabe4d0ca48009;p=git-core%2Fgit.git builtin-commit.c: Remove a redundant assignment. Signed-off-by: Johannes Sixt Signed-off-by: Junio C Hamano --- diff --git a/builtin-commit.c b/builtin-commit.c index 660a3458f..e3adfdf6d 100644 --- a/builtin-commit.c +++ b/builtin-commit.c @@ -745,10 +745,8 @@ static int parse_and_validate_options(int argc, const char *argv[], die("No paths with --include/--only does not make sense."); if (argc == 0 && only && amend) only_include_assumed = "Clever... amending the last one with dirty index."; - if (argc > 0 && !also && !only) { + if (argc > 0 && !also && !only) only_include_assumed = "Explicit paths specified without -i nor -o; assuming --only paths..."; - also = 0; - } if (!cleanup_arg || !strcmp(cleanup_arg, "default")) cleanup_mode = use_editor ? CLEANUP_ALL : CLEANUP_SPACE; else if (!strcmp(cleanup_arg, "verbatim"))