From: Zbigniew Jędrzejewski-Szmek Date: Thu, 1 Mar 2012 12:26:40 +0000 (+0100) Subject: show --stat: use the full terminal width X-Git-Tag: v1.7.10-rc0~9^2~6 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=666c92a229de10f8bbfc33cf6f92aad8733f0002;p=git.git show --stat: use the full terminal width Make show --stat behave like diff --stat and use the full terminal width. Signed-off-by: Zbigniew Jędrzejewski-Szmek Signed-off-by: Junio C Hamano --- diff --git a/builtin/log.c b/builtin/log.c index 7d1f6f88a..d37ae2606 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -447,6 +447,8 @@ int cmd_show(int argc, const char **argv, const char *prefix) rev.diff = 1; rev.always_show_header = 1; rev.no_walk = 1; + rev.diffopt.stat_width = -1; /* Scale to real terminal size */ + memset(&opt, 0, sizeof(opt)); opt.def = "HEAD"; opt.tweak = show_rev_tweak_rev; diff --git a/t/t4052-stat-output.sh b/t/t4052-stat-output.sh index 29c06e59a..56d3899d9 100755 --- a/t/t4052-stat-output.sh +++ b/t/t4052-stat-output.sh @@ -97,7 +97,7 @@ do done <<\EOF ignores expect80 format-patch -1 --stdout respects expect200 diff HEAD^ HEAD --stat -ignores expect80 show --stat +respects expect200 show --stat ignores expect80 log -1 --stat EOF @@ -163,7 +163,7 @@ do done <<\EOF ignores expect80 format-patch -1 --stdout respects expect200 diff HEAD^ HEAD --stat -ignores expect80 show --stat +respects expect200 show --stat ignores expect80 log -1 --stat EOF