plugins/spellchk.c

changeset 11534
ddcc24a53926
parent 11526
2b84b1a30e76
child 11593
71d9d00b36ba
--- 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;
 

mercurial