aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdevtools/credits.pl7
1 files changed, 4 insertions, 3 deletions
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;