diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2007-10-31 18:35:37 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2007-10-31 18:35:37 -0400 |
commit | ada249e0dde4a84d583ab46345c789e366a4be33 (patch) | |
tree | 3963b29019d164c444739c5fbbab1ad46ee85065 /IkiWiki/Rcs | |
parent | 3506f4ba07b612312f7b892c73f5d486f320974e (diff) | |
download | ikiwiki-ada249e0dde4a84d583ab46345c789e366a4be33.tar ikiwiki-ada249e0dde4a84d583ab46345c789e366a4be33.tar.gz |
* Don't truncate git commit messages to the first line in RecentChanges,
show the full message.
Diffstat (limited to 'IkiWiki/Rcs')
-rw-r--r-- | IkiWiki/Rcs/git.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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); |