summaryrefslogtreecommitdiff
path: root/ext/dom/namelist.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2008-08-14 08:39:05 +0000
committerAntony Dovgal <tony2001@php.net>2008-08-14 08:39:05 +0000
commite18b1c00b67e2f7040adf981e34a8dd7c90ac341 (patch)
treefae771a722df50636631aee7badbc0bdd8464483 /ext/dom/namelist.c
parentfcf11ba65e59fcce72a91fcb14a54d2c12698197 (diff)
downloadphp-git-e18b1c00b67e2f7040adf981e34a8dd7c90ac341.tar.gz
MFH: fix ws, cs and folding
Diffstat (limited to 'ext/dom/namelist.c')
-rw-r--r--ext/dom/namelist.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/ext/dom/namelist.c b/ext/dom/namelist.c
index 6ee2c1915d..49b00d8d11 100644
--- a/ext/dom/namelist.c
+++ b/ext/dom/namelist.c
@@ -27,7 +27,6 @@
#if HAVE_LIBXML && HAVE_DOM
#include "php_dom.h"
-
/* {{{ arginfo */
static
ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_namelist_get_name, 0, 0, 1)
@@ -67,9 +66,6 @@ int dom_namelist_length_read(dom_object *obj, zval **retval TSRMLS_DC)
/* }}} */
-
-
-
/* {{{ proto string dom_namelist_get_name(int index);
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getName
Since:
@@ -80,7 +76,6 @@ PHP_FUNCTION(dom_namelist_get_name)
}
/* }}} end dom_namelist_get_name */
-
/* {{{ proto string dom_namelist_get_namespace_uri(int index);
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getNamespaceURI
Since:
@@ -90,4 +85,14 @@ PHP_FUNCTION(dom_namelist_get_namespace_uri)
DOM_NOT_IMPLEMENTED();
}
/* }}} end dom_namelist_get_namespace_uri */
+
#endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: noet sw=4 ts=4 fdm=marker
+ * vim<600: noet sw=4 ts=4
+ */