gtk/plugins/spellchk.c

changeset 14772
61bbf8ea5ded
parent 14613
cfff108c090e
child 14791
b3f882f156ef
--- 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;
 
 }

mercurial