comparison src/buddy.c @ 4856:ac9ed6c5594f

[gaim-migrate @ 5183] oops, escaped characters do actually count ;-) committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sat, 22 Mar 2003 18:13:49 +0000
parents e4bfaba117e4
children 6a0be79e9f71
comparison
equal deleted inserted replaced
4855:e4bfaba117e4 4856:ac9ed6c5594f
901 g_strdelimit(tmp, "\n", ' '); 901 g_strdelimit(tmp, "\n", ' ');
902 902
903 while(*c && vis < 20) { 903 while(*c && vis < 20) {
904 if(*c == '&') 904 if(*c == '&')
905 inside = TRUE; 905 inside = TRUE;
906 else if(*c == ';')
907 inside = FALSE;
906 if(!inside) 908 if(!inside)
907 vis++; 909 vis++;
908 if(*c == ';')
909 inside = FALSE;
910 length++; 910 length++;
911 c++; /* this is fun */ 911 c++; /* this is fun */
912 } 912 }
913 913
914 if(vis == 20) 914 if(vis == 20)