summary refs log tree commit diff
path: root/bin/git-comment.pl
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-09-11 15:11:48 -0400
committerJune McEnroe <june@causal.agency>2021-09-11 15:11:48 -0400
commit9d3e8a88a0d06310ff0a9309a5439ab97b8f922f (patch)
tree467b882efc00c6caf80a5fce923c5df776db3eaa /bin/git-comment.pl
parentPublish "git-comment" (diff)
downloadsrc-9d3e8a88a0d06310ff0a9309a5439ab97b8f922f.tar.gz
src-9d3e8a88a0d06310ff0a9309a5439ab97b8f922f.zip
Also defer printing comment for lone close-parens
Diffstat (limited to 'bin/git-comment.pl')
-rw-r--r--bin/git-comment.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/git-comment.pl b/bin/git-comment.pl
index 27a06998..71149b8d 100644
--- a/bin/git-comment.pl
+++ b/bin/git-comment.pl
@@ -74,7 +74,7 @@ while (<$pipe>) {
 		$message{$commit} = \@message;
 	} elsif (/^\t(\s*)(.*)/) {
 		my ($indent, $line) = ($1, $2);
-		unless ($printed || $line =~ /^}?;?$/) {
+		unless ($printed || $line =~ /^[})]?;?$/) {
 			$printed = 1;
 			if (
 				$group >= $minGroup &&