contrib/dump-asy.pl: Display nicer double-quotes

The right way to do this in LaTeX is ``foo'', not "foo".
next
Diego Ongaro 2013-04-30 22:14:14 -07:00 committed by Michael Stapelberg
parent 22ca203b80
commit 1b8e8822b9
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ sub dump_node {
if (!defined($n->{window})) {
$type = $n->{orientation} . '-split';
}
my $name = qq|\\"$na\\" ($type)|;
my $name = qq|``$na'' ($type)|;
print $tmp "TreeNode n" . $n->{id} . " = makeNode(";