From ada249e0dde4a84d583ab46345c789e366a4be33 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 31 Oct 2007 18:35:37 -0400 Subject: * Don't truncate git commit messages to the first line in RecentChanges, show the full message. --- IkiWiki/Rcs/git.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'IkiWiki/Rcs') diff --git a/IkiWiki/Rcs/git.pm b/IkiWiki/Rcs/git.pm index 68b573fb9..a1e06c51c 100644 --- a/IkiWiki/Rcs/git.pm +++ b/IkiWiki/Rcs/git.pm @@ -366,7 +366,7 @@ sub rcs_recentchanges ($) { #{{{ my @rets; foreach my $ci (git_commit_info('HEAD', $num)) { - my $title = @{ $ci->{'comment'} }[0]; + my $title = join("\n", @{$ci->{'comment'}}); # Skip redundant commits. next if ($title eq $dummy_commit_msg); -- cgit v1.2.3