]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
tig.pl: Fix graphs with "\".
authorSimon Ruderich <simon@ruderich.org>
Sun, 17 Mar 2013 15:26:28 +0000 (16:26 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 17 Mar 2013 15:26:28 +0000 (16:26 +0100)
tig.pl

diff --git a/tig.pl b/tig.pl
index 53c2e3655f231990a4619689a81a83c9563e501d..d7272a3183981ad8040d2c963f9f6fe1a4e03bf5 100755 (executable)
--- a/tig.pl
+++ b/tig.pl
@@ -68,7 +68,7 @@ while (my $line = <$fh>) {
     }
 
     # Commit line.
-    $line =~ /^([ *|.-]+)\x00(.+)\x00(.+)\x00(.+)\x00(.*)\x00(.*)$/
+    $line =~ /^([ *|.\\-]+)\x00(.+)\x00(.+)\x00(.+)\x00(.*)\x00(.*)$/
         or die $line;
     my $prefix  = $1;
     my $hash    = colored($2, $color_hash);