changeset 15235:6f4e30143bf6

[gaim-migrate @ 18024] Fix SF Bug #1613448 Typing "M&" auto-corrects to "AM&", which makes it hard to talk about the world's greatest candy! committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 19 Dec 2006 05:28:06 +0000
parents 9a44dd7955d6
children 6d0925ac1ed6
files gtk/plugins/spellchk.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/gtk/plugins/spellchk.c	Tue Dec 19 01:36:20 2006 +0000
+++ b/gtk/plugins/spellchk.c	Tue Dec 19 05:28:06 2006 +0000
@@ -355,6 +355,8 @@
 
 		return output;
 	}
+	else if (c == '&')
+		return TRUE;
 
 	return FALSE;
 }