This commit is contained in:
Dmitry Stogov 2006-02-21 08:00:39 +00:00
parent 7bc8d5227d
commit 2e5d0a3a9d
75 changed files with 920 additions and 920 deletions

View file

@ -42,4 +42,3 @@ ZEND_END_ARG_INFO();
ZEND_BEGIN_ARG_INFO(all_args_by_ref, 1)
ZEND_END_ARG_INFO();

View file

@ -238,4 +238,3 @@ ZEND_API void zend_strip(TSRMLS_D)
* indent-tabs-mode: t
* End:
*/

View file

@ -61,4 +61,3 @@ END_EXTERN_C()
#define zend_stream_close(handle) zend_file_handle_dtor((handle))
#endif

View file

@ -456,6 +456,9 @@ function gen_code($f, $spec, $kind, $code, $op1, $op2) {
/* Remove unnecessary ';' */
$code = preg_replace('/^\s*;\s*$/m', '', $code);
/* Remove WS */
$code = preg_replace('/[ \t]+\n/m', "\n", $code);
out($f, $code);
}