tony2001 Thu Jul 17 11:40:55 2008 UTC Modified files: /php-src/ext/xml xml.c Log: fix folding http://cvs.php.net/viewvc.cgi/php-src/ext/xml/xml.c?r1=1.179&r2=1.180&diff_format=u Index: php-src/ext/xml/xml.c diff -u php-src/ext/xml/xml.c:1.179 php-src/ext/xml/xml.c:1.180 --- php-src/ext/xml/xml.c:1.179 Thu Jul 17 09:52:51 2008 +++ php-src/ext/xml/xml.c Thu Jul 17 11:40:55 2008 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: xml.c,v 1.179 2008/07/17 09:52:51 dmitry Exp $ */ +/* $Id: xml.c,v 1.180 2008/07/17 11:40:55 tony2001 Exp $ */ #define IS_EXT_MODULE @@ -1261,7 +1261,7 @@ /************************* EXTENSION FUNCTIONS *************************/ -static void php_xml_parser_create_impl(INTERNAL_FUNCTION_PARAMETERS, int ns_support) +static void php_xml_parser_create_impl(INTERNAL_FUNCTION_PARAMETERS, int ns_support) /* {{{ */ { xml_parser *parser; int auto_detect = 0; @@ -1317,6 +1317,7 @@ ZEND_REGISTER_RESOURCE(return_value, parser,le_xml_parser); parser->index = Z_LVAL_P(return_value); } +/* }}} */ /* {{{ proto resource xml_parser_create([string encoding]) Create an XML parser */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php