From 81e2cf03ac62c29c6bb365c31b9229aa3b4deff8 Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Wed, 6 Jun 2001 13:06:12 +0000 Subject: Fix folding and clean up some extensions --- ext/gettext/gettext.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ext/gettext/gettext.c') diff --git a/ext/gettext/gettext.c b/ext/gettext/gettext.c index cdc96ae2cc..d826c439cf 100644 --- a/ext/gettext/gettext.c +++ b/ext/gettext/gettext.c @@ -31,6 +31,8 @@ #include #include "ext/standard/info.h" +/* {{{ php_gettext_functions[] + */ function_entry php_gettext_functions[] = { PHP_FE(textdomain, NULL) PHP_FE(gettext, NULL) @@ -40,6 +42,7 @@ function_entry php_gettext_functions[] = { PHP_FE(bindtextdomain, NULL) {NULL, NULL, NULL} }; +/* }}} */ zend_module_entry php_gettext_module_entry = { "gettext", php_gettext_functions, NULL, NULL, NULL, NULL, PHP_MINFO(gettext), STANDARD_MODULE_PROPERTIES @@ -173,4 +176,6 @@ PHP_FUNCTION(bindtextdomain) * tab-width: 4 * c-basic-offset: 4 * End: + * vim600: sw=4 ts=4 tw=78 fdm=marker + * vim<600: sw=4 ts=4 tw=78 */ -- cgit v1.2.1