diff options
author | Stig Bakken <ssb@php.net> | 2002-07-05 02:34:54 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2002-07-05 02:34:54 +0000 |
commit | eebae9f9efcda768d4059ae380173e4e752638d8 (patch) | |
tree | 2d0dbf26f381d41443788ddd69a2f9dddd71a2e3 | |
parent | 6b4707320da87911dfe16dcf508e2d8fbaa0301b (diff) | |
download | php-git-eebae9f9efcda768d4059ae380173e4e752638d8.tar.gz |
* folding fixes
-rw-r--r-- | Zend/zend_builtin_functions.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 971b1a4e7a..946bf008f2 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -610,7 +610,7 @@ static void is_a_impl(INTERNAL_FUNCTION_PARAMETERS, zend_bool only_subclass) efree(lcname); RETURN_FALSE; } -/* }}} */ + /* {{{ proto bool is_subclass_of(object object, string class_name) Returns true if the object has this class as one of its parents */ @@ -955,6 +955,7 @@ ZEND_FUNCTION(restore_error_handler) } RETURN_TRUE; } +/* }}} */ static int copy_class_name(zend_class_entry **pce, int num_args, va_list args, zend_hash_key *hash_key) @@ -1186,6 +1187,7 @@ ZEND_FUNCTION(get_defined_constants) array_init(return_value); zend_hash_apply_with_argument(EG(zend_constants), (apply_func_arg_t) add_constant_info, return_value TSRMLS_CC); } +/* }}} */ /* {{{ proto void debug_backtrace(void) @@ -1251,6 +1253,7 @@ ZEND_FUNCTION(debug_backtrace) } } } +/* }}} */ /* {{{ proto bool extension_loaded(string extension_name) |