changeset 8511:29aa90459620

[gaim-migrate @ 9247] fix for links between single quotes from Arun A Tharuvai committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 27 Mar 2004 17:28:47 +0000
parents e016156db02a
children c3414c5faf86
files src/util.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/util.c	Sat Mar 27 01:00:56 2004 +0000
+++ b/src/util.c	Sat Mar 27 17:28:47 2004 +0000
@@ -1121,9 +1121,6 @@
 	while (*c) {
 		if(!q && (*c == '\"' || *c == '\'')) {
 			q = c;
-		} else if(q) {
-			if(*c == *q)
-				q = NULL;
 		} else if (!g_ascii_strncasecmp(c, "<A", 2)) {
 			while (1) {
 				if (!g_ascii_strncasecmp(c, "/A>", 3)) {
@@ -1303,6 +1300,9 @@
 
 				t++;
 			}
+		} else if(q) {
+			if(*c == *q)
+				q = NULL;
 		}
 
 		if (*c == 0)