]> git.sur5r.net Git - i3/i3/commitdiff
contrib/dump-asy.pl: Display nicer double-quotes
authorDiego Ongaro <ongardie@gmail.com>
Wed, 1 May 2013 05:14:14 +0000 (22:14 -0700)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 5 May 2013 10:56:22 +0000 (12:56 +0200)
The right way to do this in LaTeX is ``foo'', not "foo".

contrib/dump-asy.pl

index c75dfcd05cdc2bd047d63130c2202f7956ca60a9..3ebdb858e9ef275d830765b1a54a75639790b6c4 100755 (executable)
@@ -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(";