libpurple/protocols/zephyr/zephyr_tzc.c

changeset 40754
aef08fe14d13
parent 40750
e87c321f05fa
child 40778
507a61f2194a
equal deleted inserted replaced
40753:19a07f7215f8 40754:aef08fe14d13
360 if(!escape_next) { 360 if(!escape_next) {
361 if(source[end] == '\\') { 361 if(source[end] == '\\') {
362 escape_next = TRUE; 362 escape_next = TRUE;
363 } 363 }
364 if(!in_quote) { 364 if(!in_quote) {
365 if(source[end] == '(') { 365 nesting = get_paren_level(nesting, source[end]);
366 nesting++;
367 }
368 if(source[end] == ')') {
369 nesting--;
370 }
371 } 366 }
372 if(source[end] == '"') { 367 if(source[end] == '"') {
373 in_quote = !in_quote; 368 in_quote = !in_quote;
374 } 369 }
375 } else { 370 } else {

mercurial