diff mbox series

diff --stat: add config option to limit filename width

Message ID 87badb12f040d1c66cd9b89074d3de5015a45983.1694446743.git.dsimic@manjaro.org (mailing list archive)
State New, archived
Headers show
Series diff --stat: add config option to limit filename width | expand

Commit Message

Dragan Simic Sept. 11, 2023, 3:39 p.m. UTC
Add new configuration option diff.statNameWidth=<width> that is equivalent
to the command-line option --stat-name-width=<width>, but it is ignored
by format-patch.  This follows the logic established by the already
existing configuration option diff.statGraphWidth=<width>.

Limiting the widths of names and graphs in the --stat output makes sense
for interactive work on wide terminals with many columns, hence the support
for these configuration options.  They don't affect format-patch because
it already adheres to the traditional 80-column standard.

Update the documentation and add more tests to cover new configuration
option diff.statNameWidth=<width>.  While there, perform a few minor code
and whitespace cleanups here and there, as spotted.

Signed-off-by: Dragan Simic <dsimic@manjaro.org>
---
 Documentation/config/diff.txt  |  4 ++++
 Documentation/diff-options.txt | 17 +++++++-------
 builtin/diff.c                 |  1 +
 builtin/log.c                  |  1 +
 builtin/merge.c                |  1 +
 builtin/rebase.c               |  1 +
 diff.c                         | 11 +++++++--
 graph.c                        |  1 -
 t/t4052-stat-output.sh         | 41 ++++++++++++++++++++++++++++------
 9 files changed, 60 insertions(+), 18 deletions(-)

Comments

Junio C Hamano Sept. 11, 2023, 11:12 p.m. UTC | #1
Dragan Simic <dsimic@manjaro.org> writes:

> Add new configuration option diff.statNameWidth=<width> that is equivalent
> to the command-line option --stat-name-width=<width>, but it is ignored
> by format-patch.  This follows the logic established by the already
> existing configuration option diff.statGraphWidth=<width>.
>
> Limiting the widths of names and graphs in the --stat output makes sense
> for interactive work on wide terminals with many columns, hence the support
> for these configuration options.  They don't affect format-patch because
> it already adheres to the traditional 80-column standard.
>
> Update the documentation and add more tests to cover new configuration
> option diff.statNameWidth=<width>.  While there, perform a few minor code
> and whitespace cleanups here and there, as spotted.
>
> Signed-off-by: Dragan Simic <dsimic@manjaro.org>
> ---

The stat lines have <width> (the entire display width),
<graph-width> (what appears after '|') and <name-width> (what
appears before '|'), so I would worry about letting users specify
all three to contradictory values, if there weren't an existing
command line option already.  But of course there already is a
command line option, so somebody more clever than me must have
thought about how to deal with such an impossible settings, and
adding a configuration variable to specify the same impossible
settings to the system would not make things worse.

>  Documentation/config/diff.txt  |  4 ++++
>  Documentation/diff-options.txt | 17 +++++++-------
>  builtin/diff.c                 |  1 +
>  builtin/log.c                  |  1 +
>  builtin/merge.c                |  1 +
>  builtin/rebase.c               |  1 +

Someday, as a follow-up after the dust from this topic settles, we
would probably want to look at how these rev.diffopt.* members are
initialized and refactor the common code out to a helper.  It would
allow us to instead of doing this ...

>  	/* Set up defaults that will apply to both no-index and regular diffs. */
>  	rev.diffopt.stat_width = -1;
> +	rev.diffopt.stat_name_width = -1;
>  	rev.diffopt.stat_graph_width = -1;
>  	rev.diffopt.flags.allow_external = 1;
>  	rev.diffopt.flags.allow_textconv = 1;

... in many places, do so in a single place in the helper function,
and these places will just call the helper:

	std_graph_options(&rev.diffopt);

I do not know offhand if "stat graph options related members" is a
good line to draw, or there are other things that are common outside
these .stat_foo members.  If the latter and the helper function will
initialize the members other than the stat-graph settings, its name
obviously needs a bit more thought, but you get the idae.

Thanks.
Dragan Simic Sept. 12, 2023, 2:11 a.m. UTC | #2
On 2023-09-12 01:12, Junio C Hamano wrote:
> Dragan Simic <dsimic@manjaro.org> writes:
> 
>> Add new configuration option diff.statNameWidth=<width> that is 
>> equivalent
>> to the command-line option --stat-name-width=<width>, but it is 
>> ignored
>> by format-patch.  This follows the logic established by the already
>> existing configuration option diff.statGraphWidth=<width>.
>> 
>> Limiting the widths of names and graphs in the --stat output makes 
>> sense
>> for interactive work on wide terminals with many columns, hence the 
>> support
>> for these configuration options.  They don't affect format-patch 
>> because
>> it already adheres to the traditional 80-column standard.
>> 
>> Update the documentation and add more tests to cover new configuration
>> option diff.statNameWidth=<width>.  While there, perform a few minor 
>> code
>> and whitespace cleanups here and there, as spotted.
>> 
>> Signed-off-by: Dragan Simic <dsimic@manjaro.org>
>> ---
> 
> The stat lines have <width> (the entire display width),
> <graph-width> (what appears after '|') and <name-width> (what
> appears before '|'), so I would worry about letting users specify
> all three to contradictory values, if there weren't an existing
> command line option already.  But of course there already is a
> command line option, so somebody more clever than me must have
> thought about how to deal with such an impossible settings, and
> adding a configuration variable to specify the same impossible
> settings to the system would not make things worse.

Good point, but we're actually fine with adding diff.statNameWidth as a 
new configuration option, because the real troubles with contradictory 
configuration values might arise if we ever add diff.statWidth later.  
However, we should still be fine at that point, because the code in 
diff.c, starting around the line #2730, performs a reasonable amount of 
sanity checks and value adjustments.

If we ever add diff.statWidth later, a good thing to do would be to emit 
warnings from the above-mentioned code in diff.c if it actually performs 
the adjustments, to make the users aware of the contradictory values.  I 
might even have a look at that separately, if you're fine with adding 
such warnings.

>>  Documentation/config/diff.txt  |  4 ++++
>>  Documentation/diff-options.txt | 17 +++++++-------
>>  builtin/diff.c                 |  1 +
>>  builtin/log.c                  |  1 +
>>  builtin/merge.c                |  1 +
>>  builtin/rebase.c               |  1 +
> 
> Someday, as a follow-up after the dust from this topic settles, we
> would probably want to look at how these rev.diffopt.* members are
> initialized and refactor the common code out to a helper.  It would
> allow us to instead of doing this ...

Another good point.  If you agree, I'd prefer to have my patch accepted 
and merged as-is, after which I'll have a look into unifying the 
initialization of the rev.diffopt.* members.  Such an approach should, 
in general, also be better in case any regressions are detected at some 
point in the future.

I'll also have a look into the NEEDSWORK note in diff.c that asks for 
using utf8_strnwidth() to calculate the display width of line_prefix.  I 
already had a brief look at that, and it seems that it leaves enough 
space for some rather nice related code cleanups.

>>  	/* Set up defaults that will apply to both no-index and regular 
>> diffs. */
>>  	rev.diffopt.stat_width = -1;
>> +	rev.diffopt.stat_name_width = -1;
>>  	rev.diffopt.stat_graph_width = -1;
>>  	rev.diffopt.flags.allow_external = 1;
>>  	rev.diffopt.flags.allow_textconv = 1;
> 
> ... in many places, do so in a single place in the helper function,
> and these places will just call the helper:
> 
> 	std_graph_options(&rev.diffopt);
> 
> I do not know offhand if "stat graph options related members" is a
> good line to draw, or there are other things that are common outside
> these .stat_foo members.  If the latter and the helper function will
> initialize the members other than the stat-graph settings, its name
> obviously needs a bit more thought, but you get the idae.

Sure, I'm willing to have a detailed look into all that, as I already 
described above.
Junio C Hamano Sept. 12, 2023, 5:11 p.m. UTC | #3
Dragan Simic <dsimic@manjaro.org> writes:

>> Someday, as a follow-up after the dust from this topic settles, we
>> would probably want to look at how these rev.diffopt.* members are
>> initialized and refactor the common code out to a helper.  It would
>> allow us to instead of doing this ...
>
> Another good point.  If you agree, I'd prefer to have my patch
> accepted and merged as-is, ...

That is exactly what I meant by "follow-up after the dust settles".

All of the "we should probably do this and that in the future" are
called #leftoverbits comments.  Food for thought, something people
can use to find inspiration for areas they may want to work on, that
has no impact to how "complete" the current patch being discussed
is.
Dragan Simic Sept. 12, 2023, 5:48 p.m. UTC | #4
On 2023-09-12 19:11, Junio C Hamano wrote:
> Dragan Simic <dsimic@manjaro.org> writes:
> 
>>> Someday, as a follow-up after the dust from this topic settles, we
>>> would probably want to look at how these rev.diffopt.* members are
>>> initialized and refactor the common code out to a helper.  It would
>>> allow us to instead of doing this ...
>> 
>> Another good point.  If you agree, I'd prefer to have my patch
>> accepted and merged as-is, ...
> 
> That is exactly what I meant by "follow-up after the dust settles".
> 
> All of the "we should probably do this and that in the future" are
> called #leftoverbits comments.  Food for thought, something people
> can use to find inspiration for areas they may want to work on, that
> has no impact to how "complete" the current patch being discussed
> is.

Sounds great, thank you.  I already have a couple of code cleanups to 
work on, which I'll do in the following days and send the patches.
Dragan Simic Sept. 16, 2023, 2:09 a.m. UTC | #5
On 2023-09-12 04:11, Dragan Simic wrote:
> On 2023-09-12 01:12, Junio C Hamano wrote:
>> Dragan Simic <dsimic@manjaro.org> writes:
>> 
>>> Add new configuration option diff.statNameWidth=<width> that is 
>>> equivalent
>>> to the command-line option --stat-name-width=<width>, but it is 
>>> ignored
>>> by format-patch.  This follows the logic established by the already
>>> existing configuration option diff.statGraphWidth=<width>.
>>> 
>>> Limiting the widths of names and graphs in the --stat output makes 
>>> sense
>>> for interactive work on wide terminals with many columns, hence the 
>>> support
>>> for these configuration options.  They don't affect format-patch 
>>> because
>>> it already adheres to the traditional 80-column standard.
>>> 
>>> Update the documentation and add more tests to cover new 
>>> configuration
>>> option diff.statNameWidth=<width>.  While there, perform a few minor 
>>> code
>>> and whitespace cleanups here and there, as spotted.
>>> 
>>> Signed-off-by: Dragan Simic <dsimic@manjaro.org>
>>> ---
>> 
>> The stat lines have <width> (the entire display width),
>> <graph-width> (what appears after '|') and <name-width> (what
>> appears before '|'), so I would worry about letting users specify
>> all three to contradictory values, if there weren't an existing
>> command line option already.  But of course there already is a
>> command line option, so somebody more clever than me must have
>> thought about how to deal with such an impossible settings, and
>> adding a configuration variable to specify the same impossible
>> settings to the system would not make things worse.
> 
> Good point, but we're actually fine with adding diff.statNameWidth as
> a new configuration option, because the real troubles with
> contradictory configuration values might arise if we ever add
> diff.statWidth later.  However, we should still be fine at that point,
> because the code in diff.c, starting around the line #2730, performs a
> reasonable amount of sanity checks and value adjustments.
> 
> If we ever add diff.statWidth later, a good thing to do would be to
> emit warnings from the above-mentioned code in diff.c if it actually
> performs the adjustments, to make the users aware of the contradictory
> values.  I might even have a look at that separately, if you're fine
> with adding such warnings.

Just checking, do you want me to perform any improvements to this patch, 
so you can have it pulled into one of your trees?

I'll start working on a patch that adds the above-mentioned warnings, 
but having those implemented properly and hashed out will surely take a 
fair amount of time.  However, those warnings should be quite usable, if 
you agree, although they're not critical at the moment.

>>>  Documentation/config/diff.txt  |  4 ++++
>>>  Documentation/diff-options.txt | 17 +++++++-------
>>>  builtin/diff.c                 |  1 +
>>>  builtin/log.c                  |  1 +
>>>  builtin/merge.c                |  1 +
>>>  builtin/rebase.c               |  1 +
>> 
>> Someday, as a follow-up after the dust from this topic settles, we
>> would probably want to look at how these rev.diffopt.* members are
>> initialized and refactor the common code out to a helper.  It would
>> allow us to instead of doing this ...
> 
> Another good point.  If you agree, I'd prefer to have my patch
> accepted and merged as-is, after which I'll have a look into unifying
> the initialization of the rev.diffopt.* members.  Such an approach
> should, in general, also be better in case any regressions are
> detected at some point in the future.
> 
> I'll also have a look into the NEEDSWORK note in diff.c that asks for
> using utf8_strnwidth() to calculate the display width of line_prefix.
> I already had a brief look at that, and it seems that it leaves enough
> space for some rather nice related code cleanups.

I'll also start working on these patches in the next few days, which 
should result in some rather nice code cleanups, AFAICT so far.

>>>  	/* Set up defaults that will apply to both no-index and regular 
>>> diffs. */
>>>  	rev.diffopt.stat_width = -1;
>>> +	rev.diffopt.stat_name_width = -1;
>>>  	rev.diffopt.stat_graph_width = -1;
>>>  	rev.diffopt.flags.allow_external = 1;
>>>  	rev.diffopt.flags.allow_textconv = 1;
>> 
>> ... in many places, do so in a single place in the helper function,
>> and these places will just call the helper:
>> 
>> 	std_graph_options(&rev.diffopt);
>> 
>> I do not know offhand if "stat graph options related members" is a
>> good line to draw, or there are other things that are common outside
>> these .stat_foo members.  If the latter and the helper function will
>> initialize the members other than the stat-graph settings, its name
>> obviously needs a bit more thought, but you get the idae.
> 
> Sure, I'm willing to have a detailed look into all that, as I already
> described above.
Junio C Hamano Sept. 18, 2023, 4:38 p.m. UTC | #6
Dragan Simic <dsimic@manjaro.org> writes:

> Just checking, do you want me to perform any improvements to this
> patch, so you can have it pulled into one of your trees?

I do not think of any outstanding issues I spotted on this change.
Thanks for pinging.
Dragan Simic Sept. 19, 2023, 1:27 a.m. UTC | #7
On 2023-09-18 18:38, Junio C Hamano wrote:
> Dragan Simic <dsimic@manjaro.org> writes:
> 
>> Just checking, do you want me to perform any improvements to this
>> patch, so you can have it pulled into one of your trees?
> 
> I do not think of any outstanding issues I spotted on this change.
> Thanks for pinging.

Great, thanks.
diff mbox series

Patch

diff --git a/Documentation/config/diff.txt b/Documentation/config/diff.txt
index 35a7bf86d7..9391c77e55 100644
--- a/Documentation/config/diff.txt
+++ b/Documentation/config/diff.txt
@@ -52,6 +52,10 @@  directories with less than 10% of the total amount of changed files,
 and accumulating child directory counts in the parent directories:
 `files,10,cumulative`.
 
+diff.statNameWidth::
+	Limit the width of the filename part in --stat output. If set, applies
+	to all commands generating --stat output except format-patch.
+
 diff.statGraphWidth::
 	Limit the width of the graph part in --stat output. If set, applies
 	to all commands generating --stat output except format-patch.
diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt
index 9f33f88771..6603470dbe 100644
--- a/Documentation/diff-options.txt
+++ b/Documentation/diff-options.txt
@@ -210,14 +210,15 @@  have to use `--diff-algorithm=default` option.
 	part. Maximum width defaults to terminal width, or 80 columns
 	if not connected to a terminal, and can be overridden by
 	`<width>`. The width of the filename part can be limited by
-	giving another width `<name-width>` after a comma. The width
-	of the graph part can be limited by using
-	`--stat-graph-width=<width>` (affects all commands generating
-	a stat graph) or by setting `diff.statGraphWidth=<width>`
-	(does not affect `git format-patch`).
-	By giving a third parameter `<count>`, you can limit the
-	output to the first `<count>` lines, followed by `...` if
-	there are more.
+	giving another width `<name-width>` after a comma or by setting
+	`diff.statNameWidth=<width>`. The width of the graph part can be
+	limited by using `--stat-graph-width=<width>` or by setting
+	`diff.statGraphWidth=<width>`. Using `--stat` or
+	`--stat-graph-width` affects all commands generating a stat graph,
+	while setting `diff.statNameWidth` or `diff.statGraphWidth`
+	does not affect `git format-patch`.
+	By giving a third parameter `<count>`, you can limit the output to
+	the first `<count>` lines, followed by `...` if there are more.
 +
 These parameters can also be set individually with `--stat-width=<width>`,
 `--stat-name-width=<name-width>` and `--stat-count=<count>`.
diff --git a/builtin/diff.c b/builtin/diff.c
index 0b313549c7..c0f564273a 100644
--- a/builtin/diff.c
+++ b/builtin/diff.c
@@ -475,6 +475,7 @@  int cmd_diff(int argc, const char **argv, const char *prefix)
 
 	/* Set up defaults that will apply to both no-index and regular diffs. */
 	rev.diffopt.stat_width = -1;
+	rev.diffopt.stat_name_width = -1;
 	rev.diffopt.stat_graph_width = -1;
 	rev.diffopt.flags.allow_external = 1;
 	rev.diffopt.flags.allow_textconv = 1;
diff --git a/builtin/log.c b/builtin/log.c
index 87088077d9..2901514778 100644
--- a/builtin/log.c
+++ b/builtin/log.c
@@ -175,6 +175,7 @@  static void cmd_log_init_defaults(struct rev_info *rev)
 	rev->verbose_header = 1;
 	rev->diffopt.flags.recursive = 1;
 	rev->diffopt.stat_width = -1; /* use full terminal width */
+	rev->diffopt.stat_name_width = -1; /* respect statNameWidth config */
 	rev->diffopt.stat_graph_width = -1; /* respect statGraphWidth config */
 	rev->abbrev_commit = default_abbrev_commit;
 	rev->show_root_diff = default_show_root;
diff --git a/builtin/merge.c b/builtin/merge.c
index de68910177..fd6942d0ef 100644
--- a/builtin/merge.c
+++ b/builtin/merge.c
@@ -488,6 +488,7 @@  static void finish(struct commit *head_commit,
 		struct diff_options opts;
 		repo_diff_setup(the_repository, &opts);
 		opts.stat_width = -1; /* use full terminal width */
+		opts.stat_name_width = -1; /* respect statNameWidth config */
 		opts.stat_graph_width = -1; /* respect statGraphWidth config */
 		opts.output_format |=
 			DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
diff --git a/builtin/rebase.c b/builtin/rebase.c
index 50cb85751f..ed15accec9 100644
--- a/builtin/rebase.c
+++ b/builtin/rebase.c
@@ -1804,6 +1804,7 @@  int cmd_rebase(int argc, const char **argv, const char *prefix)
 		/* We want color (if set), but no pager */
 		repo_diff_setup(the_repository, &opts);
 		opts.stat_width = -1; /* use full terminal width */
+		opts.stat_name_width = -1; /* respect statNameWidth config */
 		opts.stat_graph_width = -1; /* respect statGraphWidth config */
 		opts.output_format |=
 			DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
diff --git a/diff.c b/diff.c
index bccb018da4..353e3b2cc9 100644
--- a/diff.c
+++ b/diff.c
@@ -65,6 +65,7 @@  int diff_auto_refresh_index = 1;
 static int diff_mnemonic_prefix;
 static int diff_no_prefix;
 static int diff_relative;
+static int diff_stat_name_width;
 static int diff_stat_graph_width;
 static int diff_dirstat_permille_default = 30;
 static struct diff_options default_diff_options;
@@ -410,6 +411,10 @@  int git_diff_ui_config(const char *var, const char *value,
 		diff_relative = git_config_bool(var, value);
 		return 0;
 	}
+	if (!strcmp(var, "diff.statnamewidth")) {
+		diff_stat_name_width = git_config_int(var, value, ctx->kvi);
+		return 0;
+	}
 	if (!strcmp(var, "diff.statgraphwidth")) {
 		diff_stat_graph_width = git_config_int(var, value, ctx->kvi);
 		return 0;
@@ -2704,12 +2709,14 @@  static void show_stats(struct diffstat_t *data, struct diff_options *options)
 	number_width = decimal_width(max_change) > number_width ?
 		decimal_width(max_change) : number_width;
 
+	if (options->stat_name_width == -1)
+		options->stat_name_width = diff_stat_name_width;
 	if (options->stat_graph_width == -1)
 		options->stat_graph_width = diff_stat_graph_width;
 
 	/*
-	 * Guarantee 3/8*16==6 for the graph part
-	 * and 5/8*16==10 for the filename part
+	 * Guarantee 3/8*16 == 6 for the graph part
+	 * and 5/8*16 == 10 for the filename part
 	 */
 	if (width < 16 + 6 + number_width)
 		width = 16 + 6 + number_width;
diff --git a/graph.c b/graph.c
index 2a9dc430fa..1ca34770ee 100644
--- a/graph.c
+++ b/graph.c
@@ -339,7 +339,6 @@  void graph_setup_line_prefix(struct diff_options *diffopt)
 		diffopt->output_prefix = diff_output_prefix_callback;
 }
 
-
 struct git_graph *graph_init(struct rev_info *opt)
 {
 	struct git_graph *graph = xmalloc(sizeof(struct git_graph));
diff --git a/t/t4052-stat-output.sh b/t/t4052-stat-output.sh
index 3ee27e277d..beb2ec2a55 100755
--- a/t/t4052-stat-output.sh
+++ b/t/t4052-stat-output.sh
@@ -49,34 +49,63 @@  log -1 --stat
 EOF
 
 cat >expect.60 <<-'EOF'
- ...aaaaaaaaaaaaaaaaaaaaaaaaaaaaa | 1 +
+ ...aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa | 1 +
 EOF
 cat >expect.6030 <<-'EOF'
  ...aaaaaaaaaaaaaaaaaaaaaaaaaaa | 1 +
 EOF
-cat >expect2.60 <<-'EOF'
+while read verb expect cmd args
+do
+	# No width limit applied when statNameWidth is ignored
+	case "$expect" in expect72|expect.6030)
+		test_expect_success "$cmd $verb statNameWidth config with long name" '
+			git -c diff.statNameWidth=30 $cmd $args >output &&
+			grep " | " output >actual &&
+			test_cmp $expect actual
+		';;
+	esac
+	# Maximum width limit still applied when statNameWidth is ignored
+	case "$expect" in expect.60|expect.6030)
+		test_expect_success "$cmd --stat=width $verb statNameWidth config with long name" '
+			git -c diff.statNameWidth=30 $cmd $args --stat=60 >output &&
+			grep " | " output >actual &&
+			test_cmp $expect actual
+		';;
+	esac
+done <<\EOF
+ignores expect72 format-patch -1 --stdout
+ignores expect.60 format-patch -1 --stdout
+respects expect.6030 diff HEAD^ HEAD --stat
+respects expect.6030 show --stat
+respects expect.6030 log -1 --stat
+EOF
+
+cat >expect.40 <<-'EOF'
+ ...aaaaaaaaaaaaaaaaaaaaaaaaaaaaa | 1 +
+EOF
+cat >expect2.40 <<-'EOF'
  ...aaaaaaaaaaaaaaaaaaaaaaaaaaaaa | 1 +
  ...aaaaaaaaaaaaaaaaaaaaaaaaaaaaa | 1 +
 EOF
 cat >expect2.6030 <<-'EOF'
  ...aaaaaaaaaaaaaaaaaaaaaaaaaaa | 1 +
  ...aaaaaaaaaaaaaaaaaaaaaaaaaaa | 1 +
 EOF
 while read expect cmd args
 do
 	test_expect_success "$cmd --stat=width: a long name is given more room when the bar is short" '
 		git $cmd $args --stat=40 >output &&
 		grep " | " output >actual &&
-		test_cmp $expect.60 actual
+		test_cmp $expect.40 actual
 	'
 
 	test_expect_success "$cmd --stat-width=width with long name" '
 		git $cmd $args --stat-width=40 >output &&
 		grep " | " output >actual &&
-		test_cmp $expect.60 actual
+		test_cmp $expect.40 actual
 	'
 
-	test_expect_success "$cmd --stat=...,name-width with long name" '
+	test_expect_success "$cmd --stat=width,name-width with long name" '
 		git $cmd $args --stat=60,30 >output &&
 		grep " | " output >actual &&
 		test_cmp $expect.6030 actual
@@ -94,7 +123,6 @@  expect show --stat
 expect log -1 --stat
 EOF
 
-
 test_expect_success 'preparation for big change tests' '
 	>abcd &&
 	git add abcd &&
@@ -207,7 +235,6 @@  respects expect40 show --stat
 respects expect40 log -1 --stat
 EOF
 
-
 cat >expect <<'EOF'
  abcd | 1000 ++++++++++++++++++++++++++
 EOF