Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
contrib/dump-asy.pl: Display nicer double-quotes
Browse files Browse the repository at this point in the history
The right way to do this in LaTeX is ``foo'', not "foo".
  • Loading branch information
ongardie authored and stapelberg committed May 5, 2013
1 parent 22ca203 commit 1b8e882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/dump-asy.pl
Expand Up @@ -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(";

Expand Down

0 comments on commit 1b8e882

Please sign in to comment.