# HG changeset patch # User Richard Laager # Date 1160615308 0 # Node ID 2d7c814d9f09a39a5f177f9682c33dc5b0b11e57 # Parent 3b5c732458ecc7e8d23456dd39e85d42dc3f1023 [gaim-migrate @ 17464] SF Bug #1573887 suggests that we stop special casing ' as an inside-the-word character. I can't come up with a good reason to reject the request, so here it is. committer: Tailor Script diff -r 3b5c732458ec -r 2d7c814d9f09 gtk/plugins/spellchk.c --- 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; }