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 | 774decfc311710c12a27a3c5cd827c96fea4d332 (patch) | |
tree | bedb668b15859e8a6bb038ac6d3cdd08066c16fc | |
parent | Up default min-repeat to 30 lines (diff) | |
download | src-774decfc311710c12a27a3c5cd827c96fea4d332.tar.gz src-774decfc311710c12a27a3c5cd827c96fea4d332.zip |
Defer printing comment if line is blank or closing brace
This fixes badly indented comments.
-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 9efebf83..7f85b6d6 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 && |