From 6443386154ad9f25c32d2e9f67554ce2c196cb7c Mon Sep 17 00:00:00 2001 From: ndparker <> Date: Fri, 30 Mar 2001 13:08:20 +0000 Subject: [PATCH] fixed a bug: U+00B4 was not converted into ´ - now it does do ;) --- selfforum-cgi/shared/Encode/Plain.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfforum-cgi/shared/Encode/Plain.pm b/selfforum-cgi/shared/Encode/Plain.pm index f7c5eef..2fe5634 100644 --- a/selfforum-cgi/shared/Encode/Plain.pm +++ b/selfforum-cgi/shared/Encode/Plain.pm @@ -207,7 +207,7 @@ BEGIN { "\261" => '±', # Plusminus "\262" => '²', # hoch 2 "\263" => '³', # hoch 3 - "\264" => '‚', # einf. anfuehrungszeichen unten + "\264" => '´', # Acute "\265" => 'µ', # my-Zeichen (griech) "\266" => '¶', # Absatzzeichen "\267" => '·', # Mal-Zeichen @@ -326,7 +326,7 @@ BEGIN { 173 => '-', 174 => '®', 175 => 'ß', - 180 => '‚', + 180 => '´', 184 => '¸', 185 => '¹', 187 => '»', -- 2.34.1