diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-11-15 13:29:39 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-11-15 13:29:39 +0000 |
commit | a8c6b992b8894763c59276c1142971aa9a314500 (patch) | |
tree | cd160a00c80a2b4c903c85ee4c23432c1ca55241 /Zend/zend_globals.h | |
parent | 55190081694669150d38e760e2e1e498b21478fa (diff) | |
download | php-git-a8c6b992b8894763c59276c1142971aa9a314500.tar.gz |
Fixed bug #35147 (__HALT_COMPILER() breaks with --enable-zend-multibyte)
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r-- | Zend/zend_globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index bdbf72e659..198b3640c6 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -135,6 +135,7 @@ struct _zend_compiler_globals { #ifdef ZEND_MULTIBYTE zend_encoding **script_encoding_list; int script_encoding_list_size; + zend_bool detect_unicode; zend_encoding *internal_encoding; |