changeset 11534:379490cbe014

[gaim-migrate @ 13783] Treat \ as an inside-word character. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 12 Sep 2005 20:12:32 +0000
parents c9b815aeddc1
children bb98b2c09224
files plugins/spellchk.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/spellchk.c	Mon Sep 12 20:04:37 2005 +0000
+++ b/plugins/spellchk.c	Mon Sep 12 20:12:32 2005 +0000
@@ -296,6 +296,10 @@
 	if (c == '.')
 		return TRUE;
 
+	/* Avoid problems with \r, for example (SF #1289031). */
+	if (c == '\\')
+		return TRUE;
+
 	if (gtk_text_iter_inside_word (iter) == TRUE)
 		return TRUE;