From: Stephan Witt Date: Tue, 10 May 2016 16:06:48 +0000 (+0200) Subject: Correct path names were to look for RPM based dictionaries for hunspell on Linux. X-Git-Tag: 2.2.1~163 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=4d9f2e740baca1a05dcdc4a22d7af9b0087c83ff;p=features.git Correct path names were to look for RPM based dictionaries for hunspell on Linux. (cherry picked from commit 3a2fc1595b316e0847d25b0604ec9188d953af01) --- diff --git a/src/HunspellChecker.cpp b/src/HunspellChecker.cpp index 67c7e27cc4..24a25f239c 100644 --- a/src/HunspellChecker.cpp +++ b/src/HunspellChecker.cpp @@ -154,9 +154,9 @@ const string HunspellChecker::Private::dictPath(int selector) { switch (selector) { case 4: - return addName(hunspellPackageDictDirectory(),dictDirectory()); + return hunspellPackageDictDirectory(); case 3: - return addName(myspellPackageDictDirectory(),dictDirectory()); + return myspellPackageDictDirectory(); case 2: return addName(package().system_support().absFileName(),dictDirectory()); case 1: diff --git a/status.22x b/status.22x index 06bda4a482..23aa481d0e 100644 --- a/status.22x +++ b/status.22x @@ -60,6 +60,8 @@ What's new - Fix smal typo in Reference dialog (bug 10194). +- Fix default location for RPM based hunspell dictionary search (bug 10071 and 10192). + * INTERNALS