From 1122e7324c0992bfc7d463a6708546af68dfb70c Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 2 Aug 2016 13:13:29 +0100 Subject: [PATCH] compute: do not generate accidental unwanted \ escapes in dot --- compute | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compute b/compute index bb2f2ec..bd9ed7c 100755 --- a/compute +++ b/compute @@ -430,7 +430,7 @@ printf " %-5s %s\n", $_, $choices{$_}{Desc} if (defined $gfile) { foreach my $cho (values %choices) { my $chn = $choices[$cho->{Index}]; - my $label = "\\$chn\n$cho->{Desc}"; + my $label = "$chn\n$cho->{Desc}"; if ($cho->{Dropped}) { $label .= "\nDropped: $cho->{Dropped}"; } -- 2.30.2