comparison mcabber/src/utils.c @ 553:b1d71f5107a1

Remove debug printf() Grrr.
author Mikael Berthe <mikael@lilotux.net>
date Tue, 29 Nov 2005 22:12:05 +0100
parents c71699efa5cc
children 2424bbf0a6db
comparison
equal deleted inserted replaced
552:ba5271b49f21 553:b1d71f5107a1
405 // End of string pointer 405 // End of string pointer
406 for (end = start; *end; end++) ; 406 for (end = start; *end; end++) ;
407 // Skip trailing space 407 // Skip trailing space
408 while (end > start+1 && *(end-1) == ' ') 408 while (end > start+1 && *(end-1) == ' ')
409 end--; 409 end--;
410 printf("start=|%s|\n", start);
411 410
412 for (p = start; p < end; p++) { 411 for (p = start; p < end; p++) {
413 if (*p == '"' && !escape) 412 if (*p == '"' && !escape)
414 instring = !instring; 413 instring = !instring;
415 if (*p == '\\' && !escape) 414 if (*p == '\\' && !escape)