--- a/gtk/plugins/spellchk.c Thu Oct 12 01:03:18 2006 +0000 +++ b/gtk/plugins/spellchk.c Thu Oct 12 01:08:28 2006 +0000 @@ -298,7 +298,6 @@ g_free(spell); } -/* Pango doesn't know about the "'" character. Let's fix that. */ static gboolean spellchk_inside_word(GtkTextIter *iter) { @@ -329,16 +328,6 @@ if (gtk_text_iter_inside_word (iter) == TRUE) return TRUE; - if (c == '\'') { - result = gtk_text_iter_backward_char(iter); - output = gtk_text_iter_inside_word(iter); - - if (result) - gtk_text_iter_forward_char(iter); - - return output; - } - return FALSE; }