From b9fd745e45216e4202b31a95f2c4ded7d60279d2 Mon Sep 17 00:00:00 2001 From: Travis McKay Date: Mon, 28 May 2018 19:04:34 -0700 Subject: DEVTOOLS: Fix RTF credits encoding inconsistencies --- devtools/credits.pl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'devtools') diff --git a/devtools/credits.pl b/devtools/credits.pl index 135d3a809e..68a014deab 100755 --- a/devtools/credits.pl +++ b/devtools/credits.pl @@ -137,15 +137,16 @@ sub html_entities_to_rtf { $text =~ s/ó/\\'97/g; $text =~ s/ø/\\'bf/g; $text =~ s/å/\\'8c/g; - # The following numerical values are octal! + # The following numerical values are decimal! $text =~ s/ł/\\uc0\\u322 /g; - $text =~ s/Š/\\uc0\\u540 /g; + $text =~ s/ś/\\uc0\\u347 /g; + $text =~ s/Š/\\uc0\\u352 /g; # Back to hex numbers $text =~ s/ñ/\\'96/g; $text =~ s/ä/\\'8a/g; - $text =~ s/ë/\\'eb/g; + $text =~ s/ë/\\'91/g; $text =~ s/ö/\\'9a/g; $text =~ s/ü/\\'9f/g; -- cgit v1.2.3