Mercurial > pidgin.yaz
comparison libpurple/xmlnode.c @ 31797:c9244d8303ce
Change space indentation to tab indentation on a line
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Sun, 13 Mar 2011 09:05:46 +0000 |
| parents | 77cd42f08ba1 |
| children | 7281d151e492 979bab4c3bca |
comparison
equal
deleted
inserted
replaced
| 31796:15c5a40ef7be | 31797:c9244d8303ce |
|---|---|
| 604 xmlnode_parser_element_end_libxml(void *user_data, const xmlChar *element_name, | 604 xmlnode_parser_element_end_libxml(void *user_data, const xmlChar *element_name, |
| 605 const xmlChar *prefix, const xmlChar *xmlns) | 605 const xmlChar *prefix, const xmlChar *xmlns) |
| 606 { | 606 { |
| 607 struct _xmlnode_parser_data *xpd = user_data; | 607 struct _xmlnode_parser_data *xpd = user_data; |
| 608 | 608 |
| 609 if(!element_name || !xpd->current || xpd->error) | 609 if(!element_name || !xpd->current || xpd->error) |
| 610 return; | 610 return; |
| 611 | 611 |
| 612 if(xpd->current->parent) { | 612 if(xpd->current->parent) { |
| 613 if(!xmlStrcmp((xmlChar*) xpd->current->name, element_name)) | 613 if(!xmlStrcmp((xmlChar*) xpd->current->name, element_name)) |
| 614 xpd->current = xpd->current->parent; | 614 xpd->current = xpd->current->parent; |
