]> granicus.if.org Git - php/commitdiff
- Change unicode_enabled() to unicode_semantics() per Andrei's suggestion
authorMarcus Boerger <helly@php.net>
Mon, 13 Feb 2006 19:55:17 +0000 (19:55 +0000)
committerMarcus Boerger <helly@php.net>
Mon, 13 Feb 2006 19:55:17 +0000 (19:55 +0000)
ext/unicode/unicode.c

index 4382b45adb9b157ecf76555a7f72a0d867d31cc7..1ea442ee47ff463a9d6221f15b9b07f7e6125482 100644 (file)
@@ -68,9 +68,9 @@ static PHP_FUNCTION(unicode_decode)
 }
 /* }}} */
 
-/* {{{ proto bool unicode_enabled()
+/* {{{ proto bool unicode_semantics()
    Check whether unicode semantics is enabled */
-static PHP_FUNCTION(unicode_enabled)
+static PHP_FUNCTION(unicode_semantics)
 {
        RETURN_BOOL(UG(unicode));
 }
@@ -117,7 +117,7 @@ zend_function_entry unicode_functions[] = {
        PHP_FE(i18n_loc_get_default, NULL)
        PHP_FE(i18n_loc_set_default, NULL)
        PHP_FE(unicode_decode, NULL)
-       PHP_FE(unicode_enabled, NULL)
+       PHP_FE(unicode_semantics, NULL)
        PHP_FE(unicode_encode, NULL)
        PHP_FE(i18n_strtotitle, NULL)
        { NULL, NULL, NULL }