changeset 113:52bfcdc72dcc

[gaim-migrate @ 123] Fixed word" bug. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 14 Apr 2000 06:22:29 +0000
parents a57fd3390ee4
children 668727c82810
files plugins/spellchk.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/spellchk.c	Fri Apr 14 06:02:26 2000 +0000
+++ b/plugins/spellchk.c	Fri Apr 14 06:22:29 2000 +0000
@@ -212,7 +212,7 @@
 }
 
 char *have_word(char *m, int pos) {
-	char *tmp = strpbrk(&m[pos], "' \t\f\r\n.?!-,");
+	char *tmp = strpbrk(&m[pos], "' \t\f\r\n\".?!-,");
 	int len = (int)(tmp - &m[pos]);
 
 	if (tmp == NULL) {