diff options
author | Aneesh Kumar <aneesh.kumar@gmail.com> | 2007-02-26 14:01:57 +0530 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-27 21:41:48 -0800 |
commit | ae648606220c55074dfa12d1a11f60e62a7254ac (patch) | |
tree | 85ed04f8a62fec4dd54c251ec3594513399c32f4 | |
parent | Fix minor typos/grammar in user-manual.txt (diff) | |
download | tgif-ae648606220c55074dfa12d1a11f60e62a7254ac.tar.xz |
blameview: Fix the browse behavior in blameview
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | contrib/blameview/blameview.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/blameview/blameview.perl b/contrib/blameview/blameview.perl index a9a509febb..1dec00137b 100755 --- a/contrib/blameview/blameview.perl +++ b/contrib/blameview/blameview.perl @@ -41,7 +41,7 @@ $fileview->set_rules_hint(1); $fileview->signal_connect (row_activated => sub { my ($sl, $path, $column) = @_; my $row_ref = $sl->get_row_data_from_path ($path); - system("blameview @$row_ref[0] $fn &"); + system("blameview @$row_ref[0]~1 $fn &"); }); my $commitwindow = Gtk2::ScrolledWindow->new(); |