Skip to content

Commit 153df2c

Browse files
committed
Fix typos
1 parent 75dc412 commit 153df2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/LaTeXML/Core/Dumper.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ sub dump_rec {
126126
if ($string =~ /^-?\d+(?:\.\d*)?$/) {
127127
return $object; }
128128
elsif ($string eq '\\') {
129-
"'\\\\'"; }
129+
return "'\\\\'"; }
130130
elsif ($string !~ /[^a-zA-Z0-9\@\$#\.,!:;+\-\*\/\?=~_^``\"&\(\)\[\]\<\>\{\}\|% \\]/) { # Only contains simple chars?
131131
$string =~ s/\\/\\\\/g;
132132
return "'" . $string . "'"; } # single quoted string.

lib/LaTeXML/Engine/Base.pool.ltxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use LaTeXML::Util::Pathname;
1919
use charnames ':full';
2020
use List::Util qw(min max);
2121

22-
$LaTeXML::DEBUG{compiled} = 1 unless $LaTeXML::DEBUG{compiling} || $LaTeXML::DEBUG{nocompiled};
22+
####$LaTeXML::DEBUG{compiled} = 1 unless $LaTeXML::DEBUG{compiling} || $LaTeXML::DEBUG{nocompiled};
2323

2424
#======================================================================
2525
# BASE TeX; Built-in commands.

0 commit comments

Comments
 (0)