diff options
Diffstat (limited to 'VMS/translatesyms.pl')
-rw-r--r-- | VMS/translatesyms.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/VMS/translatesyms.pl b/VMS/translatesyms.pl index 8ffdbd8aa8..de3db6ccaf 100644 --- a/VMS/translatesyms.pl +++ b/VMS/translatesyms.pl @@ -28,7 +28,7 @@ my %translations = (); open DEMANGLER_DATA, $ARGV[0] or die "Couldn't open $ARGV[0]: $!\n"; while(<DEMANGLER_DATA>) { - chomp; + s|\R$||; (my $translated, my $original) = split /\$/; $translations{$original} = $translated.'$'; } |