| Antony Dovgal 2006-08-03, 7:56 am |
| tony2001 Thu Aug 3 10:57:14 2006 UTC
Modified files:
/ZendEngine2 zend_vm_def.h zend_vm_execute.h
Log:
make it consistent
http://cvs.php.net/viewvc.cgi/ZendE...3&diff_format=u
Index: ZendEngine2/zend_vm_def.h
diff -u ZendEngine2/zend_vm_def.h:1.132 ZendEngine2/zend_vm_def.h:1.133
--- ZendEngine2/zend_vm_def.h:1.132 Thu Aug 3 10:52:15 2006
+++ ZendEngine2/zend_vm_def.h Thu Aug 3 10:57:13 2006
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_vm_def.h,v 1.132 2006/08/03 10:52:15 tony2001 Exp $ */
+/* $Id: zend_vm_def.h,v 1.133 2006/08/03 10:57:13 tony2001 Exp $ */
/* If you change this file, please regenerate the zend_vm_execute.h and
* zend_vm_opcodes.h files by running:
@@ -2058,7 +2058,7 @@
if (zend_u_hash_find(EG(function_table), Z_TYPE_P(fname), Z_UNIVAL_P(fname), Z_UNILEN_P(fname)+1, (void **) &EX(function_state).function)==FAILURE) {
/* FIXME: output identifiers properly */
- zend_error_noreturn(E_ERROR, "Call to undefined function: %R()", Z_TYPE_P(fname), Z_UNIVAL_P(fname));
+ zend_error_noreturn(E_ERROR, "Call to undefined function %R()", Z_TYPE_P(fname), Z_UNIVAL_P(fname));
}
EX(object) = NULL;
http://cvs.php.net/viewvc.cgi/ZendE...7&diff_format=u
Index: ZendEngine2/zend_vm_execute.h
diff -u ZendEngine2/zend_vm_execute.h:1.136 ZendEngine2/zend_vm_execute.h:1.137
--- ZendEngine2/zend_vm_execute.h:1.136 Thu Aug 3 10:52:15 2006
+++ ZendEngine2/zend_vm_execute.h Thu Aug 3 10:57:13 2006
@@ -1602,7 +1602,7 @@
if (zend_u_hash_find(EG(function_table), Z_TYPE_P(fname), Z_UNIVAL_P(fname), Z_UNILEN_P(fname)+1, (void **) &EX(function_state).function)==FAILURE) {
/* FIXME: output identifiers properly */
- zend_error_noreturn(E_ERROR, "Call to undefined function: %R()", Z_TYPE_P(fname), Z_UNIVAL_P(fname));
+ zend_error_noreturn(E_ERROR, "Call to undefined function %R()", Z_TYPE_P(fname), Z_UNIVAL_P(fname));
}
EX(object) = NULL;
|