changelog Tue Feb 3 20:32:17 2004 EDT
Modified files:
/ZendEngine2 ChangeLog
Log:
ChangeLog update
http://cvs.php.net/diff.php/ZendEngine2/ChangeLog?r1=1.399&r2=1.400&ty=u
Index: ZendEngine2/ChangeLog
diff -u ZendEngine2/ChangeLog:1.399 ZendEngine2/ChangeLog:1.400
--- ZendEngine2/ChangeLog:1.399 Mon Feb 2 20:32:21 2004
+++ ZendEngine2/ChangeLog Tue Feb 3 20:32:17 2004
@@ -1,3 +1,79 @@
+2004-02-03 Marcus Boerger <[EMAIL PROTECTED]>
+
+ * tests/bug24884.phpt:
+ Update tests
+
+ * zend_objects.c:
+ Nuke unused variable
+
+ * zend_compile.c:
+ Fix Warning
+
+2004-02-03 Sebastian Bergmann <[EMAIL PROTECTED]>
+
+ * ZEND_CHANGES:
+ clone/__clone() related changes.
+
+2004-02-03 Zeev Suraski <[EMAIL PROTECTED]>
+
+ * zend_compile.c:
+ Remove unused variable
+
+ * zend_objects_API.c
+ zend_objects_API.h:
+ Remove more garbage - valid bit was not really necessary
+
+ * zend_execute_API.c
+ zend_object_handlers.c
+ zend_object_handlers.h
+ zend_objects_API.c
+ zend_objects_API.h:
+ - Clean garbage (delete was nuked a long time ago)
+
+2004-02-03 Ilia Alshanetsky <[EMAIL PROTECTED]>
+
+ * zend_execute.c:
+ More unneeded code removed.
+
+2004-02-03 Zeev Suraski <[EMAIL PROTECTED]>
+
+ * zend_execute.c
+ zend_language_scanner.l:
+ Abort on parse error in an include file (patch by Ilia)
+
+ * zend_compile.c:
+ Remove redundant code
+
+ * zend_execute.c:
+ Fix try/catch block logic
+
+ * zend_compile.c
+ zend_objects.c:
+ Perform a bitwise copy of the object even when __clone() is defined.
+ __clone() is back to not requiring any arguments, as $that is no longer
+ needed ($this already contains a copy of the original object, by the time
+ we __clone() is executed).
+ Calling the parent clone is done using parent::__clone()
+
+ * zend_compile.c
+ zend_compile.h
+ zend_default_classes.c
+ zend_execute.c
+ zend_execute.h
+ zend_execute_API.c
+ zend_globals.h
+ zend_language_parser.y
+ zend_language_scanner.l
+ zend_opcode.c:
+ Rewrote exception support. Fixes a few limitations and bugs in the old
+ implementation, and allows exceptions to 'fire' much earlier than before.
+
+ Instructions on how to use the new mechanism will follow on internals@
+ shortly...
+
+ Note - this (most probably) breaks the current implementation of
+ set_exception_handler()
+
2004-02-02 Zeev Suraski <[EMAIL PROTECTED]>
* zend_compile.c
@@ -3059,7 +3135,7 @@
2003-06-10 Jani Taskinen <[EMAIL PROTECTED]>
* zend_multiply.h:
- - Missing $Id: ChangeLog,v 1.399 2004/02/03 01:32:21 changelog Exp $ tag
+ - Missing $Id: ChangeLog,v 1.400 2004/02/04 01:32:17 changelog Exp $ tag
2003-06-10 James Cox <[EMAIL PROTECTED]>
@@ -4783,7 +4859,7 @@
zend_types.h
zend_variables.c
zend_variables.h:
- - Added some missing CVS $Id: ChangeLog,v 1.399 2004/02/03 01:32:21 changelog
Exp $ tags, headers and footers.
+ - Added some missing CVS $Id: ChangeLog,v 1.400 2004/02/04 01:32:17 changelog
Exp $ tags, headers and footers.
2003-01-30 Ilia Alshanetsky <[EMAIL PROTECTED]>