contrib/dump-asy.pl: Display nicer double-quotes
Patch status: merged
Patch by Diego Ongaro
Long description:
The right way to do this in LaTeX is ``foo'', not "foo".
To apply this patch, use:
curl http://cr.i3wm.org/patch/156/raw.patch | git am
b/contrib/dump-asy.pl
| 14 |
@@ -39,7 +39,7 @@ sub dump_node {
|
| 15 |
if (!defined($n->{window})) {
|
| 16 |
$type = $n->{orientation} . '-split';
|
| 17 |
} |
| 18 |
- my $name = qq|\\"$na\\" ($type)|; |
| 19 |
+ my $name = qq|``$na'' ($type)|; |
| 20 |
|
| 21 |
print $tmp "TreeNode n" . $n->{id} . " = makeNode(";
|
| 22 |
|