From: Eric W. <war...@us...> - 2001-09-28 09:33:41
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv5449 Modified Files: buddy_chat.c Log Message: this won't break anything. Index: buddy_chat.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/buddy_chat.c,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- buddy_chat.c 2001/09/27 20:32:59 1.117 +++ buddy_chat.c 2001/09/28 09:33:38 1.118 @@ -481,7 +481,7 @@ g_strdown(who); if ((p = strstr(msg, who)) != NULL) { - if ((p == msg) || (!isalnum(*(p - 1)) && !isalnum(*(p + n)))) { + if (((p == msg) || !isalnum(*(p - 1))) && !isalnum(*(p + n))) { g_free(who); g_free(msg); return TRUE; @@ -499,7 +499,7 @@ g_strdown(who); if ((p = strstr(msg, who)) != NULL) { - if ((p == msg) || (!isalnum(*(p - 1)) && !isalnum(*(p + n)))) { + if (((p == msg) || !isalnum(*(p - 1))) && !isalnum(*(p + n))) { g_free(who); g_free(msg); return TRUE; |