Fix bug where the WinHelp backend corrupts the internal data

WinHelp/RTF needs to convert \ to \\, but did so on the global data,
so the DIP output was corrupted.
This commit is contained in:
H. Peter Anvin 2008-06-01 22:34:55 -07:00
parent 427cc912f8
commit 39fe51eedf

View File

@ -1280,11 +1280,12 @@ sub write_hlp {
# Code paragraph.
print "\\keep\\f1\\sb120\n";
foreach $i (@$pname) {
my $x = $i;
warn "code line longer than 68 chars: $i\n" if length $i > 68;
$i =~ s/\\/\\\\/g;
$i =~ s/\{/\\\{/g;
$i =~ s/\}/\\\}/g;
print "$i\\par\\sb0\n";
$x =~ s/\\/\\\\/g;
$x =~ s/\{/\\\{/g;
$x =~ s/\}/\\\}/g;
print "$x\\par\\sb0\n";
}
$newpar = "\\pard\\f0\\sb120\n";
} elsif ($ptype eq "bull" || $ptype eq "norm") {