diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-15 14:08:58 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-15 14:08:58 +0000 |
commit | 85b4df53c0c7c538206244e9f7d0764380a909bb (patch) | |
tree | 72ed3a4d2e7380bc22fad9c4c729153feea5a247 /Zend/zend_globals.h | |
parent | 4e1c65b42bea6ef1fc7ca5d9655132e760a33f42 (diff) | |
download | php-git-85b4df53c0c7c538206244e9f7d0764380a909bb.tar.gz |
Improved interactive mode - it is now available in all builds, without any significant slowdown
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r-- | Zend/zend_globals.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index 0d8789077f..fd6573ef23 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -111,6 +111,7 @@ struct _zend_compiler_globals { zend_bool ini_parser_unbuffered_errors; zend_llist open_files; + #if defined(ZTS) && defined(__cplusplus) ZendFlexLexer *ZFL; ZendIniFlexLexer *ini_scanner; @@ -118,6 +119,8 @@ struct _zend_compiler_globals { void *ZFL; void *ini_parser; #endif + + int interactive; }; @@ -195,9 +198,6 @@ struct _zend_executor_globals { HashTable ini_directives; void *reserved[ZEND_MAX_RESERVED_RESOURCES]; -#if SUPPORT_INTERACTIVE - int interactive; -#endif }; |