diff options
author | June McEnroe <june@causal.agency> | 2021-09-08 23:32:51 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-08 23:32:51 -0400 |
commit | 8e569858ece13fedeeae88645a9e5776c28bedc4 (patch) | |
tree | 4427cdf88541991a1bfac5869ad52aa1fd5d629a | |
parent | Up default min-repeat to 30 lines (diff) | |
download | src-8e569858ece13fedeeae88645a9e5776c28bedc4.tar.gz src-8e569858ece13fedeeae88645a9e5776c28bedc4.zip |
Defer printing comment if line is blank or closing brace
This fixes badly indented comments.
Diffstat (limited to '')
-rw-r--r-- | bin/git-comment.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/git-comment.pl b/bin/git-comment.pl index 52145b3b..f7d288ca 100644 --- a/bin/git-comment.pl +++ b/bin/git-comment.pl @@ -74,7 +74,7 @@ while (<$pipe>) { } elsif (/^\t(\s*)(.*)/) { my ($indent, $line) = ($1, $2); - unless ($printed) { + unless ($printed || $line =~ /^}?$/) { $printed = 1; if ( $group >= $minGroup && |