Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Fri, 14 Oct 2016 11:08:10 UTC Commit: 1f5a2a28b368d317459a3d935c17cabc738e9d76 https://github.com/geany/geany-plugins/commit/1f5a2a28b368d317459a3d935c17ca...
Log Message: ----------- Merge pull request #487 from eht16/spellcheck_strip_quotes_issue484
Strip single quotes from words' beginning and end
Modified Paths: -------------- spellcheck/src/speller.c
Modified: spellcheck/src/speller.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -53,7 +53,7 @@ static void dict_describe(const gchar* const lang, const gchar* const name,
static gboolean is_word_sep(gunichar c) { - return (g_unichar_isspace(c) || g_unichar_ispunct(c)) && c != (gunichar)'''; + return g_unichar_isspace(c) || g_unichar_ispunct(c); }
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org