mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
WS
This commit is contained in:
parent
7bc8d5227d
commit
2e5d0a3a9d
75 changed files with 920 additions and 920 deletions
|
@ -42,4 +42,3 @@ ZEND_END_ARG_INFO();
|
|||
|
||||
ZEND_BEGIN_ARG_INFO(all_args_by_ref, 1)
|
||||
ZEND_END_ARG_INFO();
|
||||
|
||||
|
|
|
@ -238,4 +238,3 @@ ZEND_API void zend_strip(TSRMLS_D)
|
|||
* indent-tabs-mode: t
|
||||
* End:
|
||||
*/
|
||||
|
||||
|
|
|
@ -61,4 +61,3 @@ END_EXTERN_C()
|
|||
#define zend_stream_close(handle) zend_file_handle_dtor((handle))
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue