summaryrefslogtreecommitdiff
path: root/ext/xml
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2008-07-17 10:24:51 +0000
committerAntony Dovgal <tony2001@php.net>2008-07-17 10:24:51 +0000
commitfe54c5144dcb740ad1028508b25081bea2cc700b (patch)
tree0f623c15acd3f1d0d61738e509dc3c93eddff4ab /ext/xml
parent833a2295d143c67295dd94e20a56883b4f2d0787 (diff)
downloadphp-git-fe54c5144dcb740ad1028508b25081bea2cc700b.tar.gz
fix folding
Diffstat (limited to 'ext/xml')
-rw-r--r--ext/xml/xml.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/xml/xml.c b/ext/xml/xml.c
index 6f8ff34210..dadba8ef00 100644
--- a/ext/xml/xml.c
+++ b/ext/xml/xml.c
@@ -1196,7 +1196,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;
@@ -1252,6 +1252,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 */