From c061f3df3a707cbce417b140017c24998afb2ecd Mon Sep 17 00:00:00 2001 From: kaetemi Date: Sat, 31 Oct 2020 03:32:50 +0800 Subject: [PATCH] Don't need this behaviour after all --- .../src/interface_v3/interface_manager.cpp | 31 ------------------- 1 file changed, 31 deletions(-) diff --git a/ryzom/client/src/interface_v3/interface_manager.cpp b/ryzom/client/src/interface_v3/interface_manager.cpp index cbfb9ba57..24ab75058 100644 --- a/ryzom/client/src/interface_v3/interface_manager.cpp +++ b/ryzom/client/src/interface_v3/interface_manager.cpp @@ -425,37 +425,6 @@ public: formatedResult += botName; break; } - case '\'': // 's and 'S -> Potato’s Identity and TOMATOES’ IDENTITY - { - std::string::const_iterator it2 = it; - ++it2; - if (it2 == inputString.end()) - { - formatedResult += "$'"; - } - else - { - it = it2; - if (*it == 's' || *it == 'S') - { - if (formatedResult.size() && (formatedResult[formatedResult.size() - 1] == 's' || formatedResult[formatedResult.size() - 1] == 'S')) - { - formatedResult += "\xE2\x80\x99"; // RIGHT SINGLE QUOTATION MARK - } - else - { - formatedResult += "\xE2\x80\x99"; // RIGHT SINGLE QUOTATION MARK - formatedResult += *it; - } - } - else - { - --it; - formatedResult += "$'"; - } - } - break; - } default: { formatedResult += '$';