]> granicus.if.org Git - php/commitdiff
fix folding
authorAntony Dovgal <tony2001@php.net>
Thu, 17 Jul 2008 11:40:55 +0000 (11:40 +0000)
committerAntony Dovgal <tony2001@php.net>
Thu, 17 Jul 2008 11:40:55 +0000 (11:40 +0000)
ext/xml/xml.c

index a4c903c74b30720ed19c472eb611175769d7fdf0..09e560fefc8743cc6ebb81c4dff0ffa282ac68ba 100644 (file)
@@ -1261,7 +1261,7 @@ void _xml_endNamespaceDeclHandler(void *userData, const XML_Char *prefix)
 
 /************************* 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 @@ static void php_xml_parser_create_impl(INTERNAL_FUNCTION_PARAMETERS, int ns_supp
        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 */