From: <rl...@us...> - 2006-12-19 05:28:10
|
Revision: 18024 http://svn.sourceforge.net/gaim/?rev=18024&view=rev Author: rlaager Date: 2006-12-18 21:28:06 -0800 (Mon, 18 Dec 2006) Log Message: ----------- Fix SF Bug #1613448 Typing "M&" auto-corrects to "AM&", which makes it hard to talk about the world's greatest candy! Modified Paths: -------------- trunk/gtk/plugins/spellchk.c Modified: trunk/gtk/plugins/spellchk.c =================================================================== --- trunk/gtk/plugins/spellchk.c 2006-12-19 01:36:20 UTC (rev 18023) +++ trunk/gtk/plugins/spellchk.c 2006-12-19 05:28:06 UTC (rev 18024) @@ -355,6 +355,8 @@ return output; } + else if (c == '&') + return TRUE; return FALSE; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |