<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext/interbase, branch php4</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/'/>
<entry>
<title>2nd phase in back-substitution those macro's</title>
<updated>2001-09-25T22:49:04+00:00</updated>
<author>
<name>Jeroen van Wolffelaar</name>
<email>jeroen@php.net</email>
</author>
<published>2001-09-25T22:49:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=6cfba2a3ea0c59f63b8c225b2a0ff85194f432f5'/>
<id>6cfba2a3ea0c59f63b8c225b2a0ff85194f432f5</id>
<content type='text'>
I've got pretty much everything now...

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I've got pretty much everything now...

</pre>
</div>
</content>
</entry>
<entry>
<title>Back-substitute for Z_* macro's. If it breaks some extension (the script isn't optimal, it parses for example var-&gt;zval.value incorrect) please let me know.</title>
<updated>2001-09-25T21:58:48+00:00</updated>
<author>
<name>Jeroen van Wolffelaar</name>
<email>jeroen@php.net</email>
</author>
<published>2001-09-25T21:58:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=c03328857394bef36ffa9678d33079ad96e4a4e4'/>
<id>c03328857394bef36ffa9678d33079ad96e4a4e4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Don't wrap lines... this is annoying while coding.</title>
<updated>2001-09-09T13:29:31+00:00</updated>
<author>
<name>Derick Rethans</name>
<email>derick@php.net</email>
</author>
<published>2001-09-09T13:29:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=78747bd2df44ad9342d735f2c9376bc143664b42'/>
<id>78747bd2df44ad9342d735f2c9376bc143664b42</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ok, hand-patched this one in</title>
<updated>2001-09-04T21:50:27+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>2001-09-04T21:50:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=9a5fdae3814cba47d90e309ccefae9f5e9a007d8'/>
<id>9a5fdae3814cba47d90e309ccefae9f5e9a007d8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Interbase extension fixes by Jeremy Bettis</title>
<updated>2001-09-04T21:47:05+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>2001-09-04T21:47:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=7101179c8d77628ef7315c10f979802fbae83a88'/>
<id>7101179c8d77628ef7315c10f979802fbae83a88</id>
<content type='text'>
(.dsp patch looked funky, but these ones look ok)

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(.dsp patch looked funky, but these ones look ok)

</pre>
</div>
</content>
</entry>
<entry>
<title>Track down a few more functions that don't check for 0 args and use</title>
<updated>2001-08-13T07:55:39+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>2001-08-13T07:55:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=4d11d90880e63aaf125d09140775efdb287b9704'/>
<id>4d11d90880e63aaf125d09140775efdb287b9704</id>
<content type='text'>
faster mechanism

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
faster mechanism

</pre>
</div>
</content>
</entry>
<entry>
<title>We don't consistently check for args passed to functions that don't</title>
<updated>2001-08-13T06:43:47+00:00</updated>
<author>
<name>Rasmus Lerdorf</name>
<email>rasmus@php.net</email>
</author>
<published>2001-08-13T06:43:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=8c497f05c4d93f4054f67fb9875f0894364020e2'/>
<id>8c497f05c4d93f4054f67fb9875f0894364020e2</id>
<content type='text'>
take any args.  In some cases we probably want to skip the check for
performance reasons, but in other cases where performance is unlikely
to be a factor, not throwing a warning on the wrong number of args passed
to a function is at best inconsistent, and at worst it could hide a bug.
So, add a few such checks.  There are still lots of cases out there.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
take any args.  In some cases we probably want to skip the check for
performance reasons, but in other cases where performance is unlikely
to be a factor, not throwing a warning on the wrong number of args passed
to a function is at best inconsistent, and at worst it could hide a bug.
So, add a few such checks.  There are still lots of cases out there.

</pre>
</div>
</content>
</entry>
<entry>
<title>Whitespace</title>
<updated>2001-08-11T16:39:07+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2001-08-11T16:39:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa'/>
<id>f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>more tsrm cleanup</title>
<updated>2001-08-06T03:50:52+00:00</updated>
<author>
<name>Sascha Schumann</name>
<email>sas@php.net</email>
</author>
<published>2001-08-06T03:50:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=23b9300fd1c854371f0f9b95dce5e259cef653d9'/>
<id>23b9300fd1c854371f0f9b95dce5e259cef653d9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Some more TSRMLS_FETCH work</title>
<updated>2001-07-31T05:56:26+00:00</updated>
<author>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
</author>
<published>2001-07-31T05:56:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/php-git.git/commit/?id=9be8c9796700b221da3c171a196789872c97228d'/>
<id>9be8c9796700b221da3c171a196789872c97228d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
