From a0cd1f8574a9afd9e6fea4aba20cea49d72a3041 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 4 Mar 2013 04:02:18 +0100 Subject: [PATCH] tig.pl: Fix graphs with "_". --- tig.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tig.pl b/tig.pl index 615107a..1ae3e75 100755 --- a/tig.pl +++ b/tig.pl @@ -44,7 +44,7 @@ open my $fh, '-|', $cmd or die $!; while (my $line = <$fh>) { # History graph line. - if ($line =~ m{^([|/\\ ]+)$}) { + if ($line =~ m{^([|/\\_ ]+)$}) { print colored($line, $color_graph); next; } -- 2.44.1