diff options
author | Stanislav Malyshev <stas@php.net> | 2013-08-04 16:06:24 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-08-04 16:06:24 -0700 |
commit | c793a6569013f9ab46f2cd7331cc1a04aa42cbed (patch) | |
tree | ba42379833bfa8176f468bfb23d24cd8ec3019e1 /Zend/zend_compile.c | |
parent | 3626db6142eda230586357a707b6cb4a0887e971 (diff) | |
parent | 8d86597d7368460383a33a4399ea7a8b244cd6fa (diff) | |
download | php-git-c793a6569013f9ab46f2cd7331cc1a04aa42cbed.tar.gz |
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4:
non living code related typo fixes
Conflicts:
Zend/zend_compile.c
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r-- | Zend/zend_compile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 196688e46e..f250b2be20 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1734,7 +1734,7 @@ void zend_do_begin_function_declaration(znode *function_token, znode *function_n } { - /* Push a seperator to the switch stack */ + /* Push a separator to the switch stack */ zend_switch_entry switch_entry; switch_entry.cond.op_type = IS_UNUSED; @@ -1828,7 +1828,7 @@ void zend_do_end_function_declaration(const znode *function_token TSRMLS_DC) /* CG(active_op_array) = function_token->u.op_array; - /* Pop the switch and foreach seperators */ + /* Pop the switch and foreach separators */ zend_stack_del_top(&CG(switch_cond_stack)); zend_stack_del_top(&CG(foreach_copy_stack)); } @@ -2671,7 +2671,7 @@ static int generate_free_foreach_copy(const zend_op *foreach_copy TSRMLS_DC) /* { zend_op *opline; - /* If we reach the seperator then stop applying the stack */ + /* If we reach the separator then stop applying the stack */ if (foreach_copy->result_type == IS_UNUSED && foreach_copy->op1_type == IS_UNUSED) { return 1; } |