]> git.lyx.org Git - features.git/commitdiff
Remap typographical apostrophe from Hunspell to plain apostrophe (#11832)
authorJuergen Spitzmueller <spitz@lyx.org>
Sat, 18 Apr 2020 09:21:48 +0000 (11:21 +0200)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Tue, 5 May 2020 03:40:18 +0000 (23:40 -0400)
(cherry picked from commit ca28c9866a916494c6613076842aa32e8d572c37)

src/HunspellChecker.cpp
status.23x

index 1c2612e78e0fdc973e3e3a6302fc6e213626741e..593a123bf9440a01be4f08dc99ecffe02d9a16b3 100644 (file)
@@ -47,6 +47,13 @@ typedef map<std::string, PersonalWordList *> LangPersonalWordList;
 
 typedef vector<WordLangTuple> IgnoreList;
 
+docstring remap_result(docstring const s)
+{
+       // substitute RIGHT SINGLE QUOTATION MARK
+       // by APOSTROPHE
+       return subst(s, 0x2019, 0x0027);
+}
+
 } // namespace
 
 
@@ -418,14 +425,14 @@ void HunspellChecker::suggest(WordLangTuple const & wl,
 #ifdef HAVE_HUNSPELL_CXXABI
        vector<string> wlst = h->suggest(word_to_check);
        for (auto const s : wlst)
-               suggestions.push_back(from_iconv_encoding(s, encoding));
+               suggestions.push_back(remap_result(from_iconv_encoding(s, encoding)));
 #else
        char ** suggestion_list;
        int const suggestion_number = h->suggest(&suggestion_list, word_to_check.c_str());
        if (suggestion_number <= 0)
                return;
        for (int i = 0; i != suggestion_number; ++i)
-               suggestions.push_back(from_iconv_encoding(suggestion_list[i], encoding));
+               suggestions.push_back(remap_result(from_iconv_encoding(suggestion_list[i], encoding)));
        h->free_list(&suggestion_list, suggestion_number);
 #endif
 }
index 1d99bb5ed9f06a9db0715b70e6cb3116a5026381..81ebd0dc8b5d399c93d529555e283e6523b80e19 100644 (file)
@@ -117,6 +117,8 @@ What's new
 
 - Fix direction of some parts of text in bidi texts (bug 11691).
 
+- Do not insert \textquoteright with Hunspell (bug 11832).
+
 
 * INTERNALS