History log of /PHP-8.3/Zend/zend_language_scanner.l (Results 376 – 400 of 502)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 58a0ee09 07-Jun-2005 Dmitry Stogov

Fixed bug #26456 (Wrong results from Reflection-API getDocComment() when called via STDIN)


# 42ada22e 06-Jun-2005 Wez Furlong

Avoid double-freeing streams.
This can happen because all streams are registered as resources;
the engine also tracks them in the open_files global.

Avoid the potential for double-fr

Avoid double-freeing streams.
This can happen because all streams are registered as resources;
the engine also tracks them in the open_files global.

Avoid the potential for double-freeing by simply making streams exposed to the
engine have no closer for the engine to call; they will already be in the
resource list, and thus will be shut down properly at request end.

show more ...


# d33500ee 04-Jun-2005 Zeev Suraski

Thought I committed it ages ago... Anyway, without further delays, the final
__halt_compiler() patch


Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1
# 118b7b56 07-Mar-2005 Zeev Suraski

Revert // </script> patch


# 143d62a1 01-Mar-2005 foobar

Fix the fix for one line comments with <script..> </script> tags


# ac63e8c2 24-Feb-2005 Andi Gutmans

- Make one line comments work the same with <script ...> </script> as with
- other tags. This will break scripts that have whitespace at the end
- of the closing tag </script > but this is

- Make one line comments work the same with <script ...> </script> as with
- other tags. This will break scripts that have whitespace at the end
- of the closing tag </script > but this is barely used as it is
- and I doubt ppl used whitespace. (patch by Jani)

show more ...


# 539b81e0 19-Feb-2005 Rui Hirokawa

fixed #31987 zend-multibyte in ZTS.


Revision tags: RELEASE_0_2_4
# e3a5c9f1 13-Feb-2005 Marcus Boerger

- Fix doc comment handling


Revision tags: RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2
# 37d820b0 17-Jan-2005 foobar

- Fixed bug #31444 (Memory leak in zend_language_scanner.c)


# 52ffca0b 03-Jan-2005 Stanislav Malyshev

Fix the following nasty bug:
- if compile bails out from the middle of compiling, current_buffer is not restored
- if current_buffer is not null, yy_switch_to_buffer will do: *yy_c_buf_p = yy

Fix the following nasty bug:
- if compile bails out from the middle of compiling, current_buffer is not restored
- if current_buffer is not null, yy_switch_to_buffer will do: *yy_c_buf_p = yy_hold_char; on
the next request
- which would lead to memory corruption on next request

show more ...


# 4cf9d270 30-Dec-2004 foobar

- Fixed bug #28930 (PHP sources pick wrong header files generated by bison)


Revision tags: php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1
# e612284e 03-Nov-2004 Derick Rethans

- Fixed bug #30630: Added a BSD based strtod function that is
locale-independent.


Revision tags: PRE_NEW_VM_GEN_PATCH, php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1
# dc7cb199 02-Aug-2004 Marcus Boerger

- Remove all for now
# - the optimization part can be done in apc or compareable products
# - NULL can be reintroduced later when needed


# d96e7a17 29-Jul-2004 Sara Golemon

Revert goto opcode


# 5865b368 29-Jul-2004 Sara Golemon

Add goto operator by popular request.


Revision tags: RELEASE_0_1
# 86d46f7c 16-Jul-2004 Marcus Boerger

- Speed up by making null/false/true reserved word which allows to drop
an opcode (FETCH_CONSTANT) for every usage.


Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8
# afc5a614 14-Jun-2004 Marcus Boerger

Need {} here


# 4da11644 10-Jun-2004 Marcus Boerger

- Require a single white-space char after /** to start a doc comment that
way we prevent /*** from becoming a doc comment (as requested Derick).


# eefdd0ea 10-Jun-2004 Marcus Boerger

Do not require NEWLINE at start of doccomment


Revision tags: php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1, php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1
# b2ac3959 25-Mar-2004 Derick Rethans

- Remove old and deprecated <?php_track_vars?> scanner token.


Revision tags: php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1, RELEASE_0_2_0
# c0aabb79 04-Mar-2004 Moriyoshi Koizumi

- Fix memleak when scanner is called from within tokenizer extension.
# (only happens with zend multibyte feature enabled)


# 059c533b 26-Feb-2004 Marcus Boerger

Fix __METHOD__ (noticed by Davey Sahfik)


Revision tags: php-4.3.5RC3, php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2
# 60bb89c5 03-Feb-2004 Zeev Suraski

Abort on parse error in an include file (patch by Ilia)


# 9e60cb55 03-Feb-2004 Zeev Suraski

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 mecha

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()

show more ...


# 8e30d96a 02-Feb-2004 Zeev Suraski

Redesign the clone() feature to fix some fundamental flaws in the previous
implementation.

Using clone directly is now done using
$replica = clone $src;

Clone methods must n

Redesign the clone() feature to fix some fundamental flaws in the previous
implementation.

Using clone directly is now done using
$replica = clone $src;

Clone methods must now be declared as follows:
function __clone($that)
{
}

Clone methods in derived classes can call the __clone method of their parent
classes using parent::__clone($that)

show more ...


1...<<1112131415161718192021