summaryrefslogtreecommitdiff
path: root/Zend/zend_llist.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove local variablesPeter Kokot2019-02-031-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
* Adios, yearly copyright rangesZeev Suraski2019-01-301-1/+1
|
* Update email addresses. We're still @Zend, but future proofing it...Zeev Suraski2018-11-011-2/+2
|
* Remove unused Git attributes identPeter Kokot2018-07-251-2/+0
| | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
* year++Xinchen Hui2018-01-021-1/+1
|
* Fix unsigned comparisons and remove dead codeAnatol Belski2017-11-171-1/+1
| | | | | | | | | | | | | | | | Fix unsigned comparison Cleanup never executed block Fix unsigned comparison Fix unsigned comparison, diff can't be < 0 Fix unsigned comparison Fix unsigned comparison Remove dead code
* further sync for vim mode linesAnatol Belski2017-07-041-0/+2
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* bump year which is missed in rev 49493a2Xinchen Hui2016-01-021-1/+1
|
* bump yearXinchen Hui2015-01-151-1/+1
|
* Faster sorting algoXinchen Hui2015-01-141-3/+11
|
* trailing whitespace removalStanislav Malyshev2015-01-101-3/+3
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-8/+8
|
* fix datatype mismatchesAnatol Belski2014-10-271-1/+1
|
* Make zend_llist_remove_tail a void functionNikita Popov2014-09-131-22/+16
| | | | The returned data is already dtored and freed at this point.
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* Remove a useless memory write in zend_llist_del_elementPierrick Charron2012-12-251-3/+1
| | | | | The zend_llist_element *next pointer is not necessary and removing it will also remove a write on memory
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-051-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fixed zend_llist_remove_tail (Michael Wallner)Dmitry Stogov2007-02-161-3/+5
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* - Update copyright notices to 2006Andi Gutmans2006-01-041-1/+1
|
* Bump up the yearfoobar2005-08-031-1/+1
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-1/+1
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* updating license information in the headers.James Cox2003-06-101-1/+1
|
* - Added some missing CVS $Id$ tags, headers and footers.foobar2003-02-011-0/+9
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* - Fix leak reported by "l0t3k" <cshmoove@hotmail.com>Andi Gutmans2002-09-011-1/+1
|
* - Fix memleak (patch by Stefan Sesser)Derick Rethans2002-06-051-0/+3
|
* Happy New Year.Sebastian Bergmann2002-01-061-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* MFZE1Sebastian Bergmann2001-09-191-2/+3
|
* - Fix warning (was fixed in ZE1 and not merged at some point). Please makeAndi Gutmans2001-09-071-1/+1
| | | | | sure you merge patches!
* MFZE1Sterling Hughes2001-08-311-24/+21
|
* - Merge Sterling's patches from ZE1Andi Gutmans2001-08-181-11/+24
|
* WhitespaceZeev Suraski2001-08-111-3/+3
|
* More TSRMLS_FETCH workZeev Suraski2001-07-311-6/+6
|
* - Add typedef for function pointer of llist dtorAndi Gutmans2001-04-211-1/+1
|
* - Update copyright yearAndi Gutmans2001-02-261-1/+1
|
* Fix zend_llist_apply_with_del - it should remove from list,Stanislav Malyshev2000-11-131-18/+19
| | | | | not only call dtor
* - Fix whitespaceAndi Gutmans2000-10-181-1/+1
|
* - Try #2. Wasn't allowed to delete in the previous manner because we wereAndi Gutmans2000-10-181-0/+18
| | | | | in the middle of an llist_apply()
* - Add zend_llist_apply_with_arguments()Zeev Suraski2000-04-291-0/+13
| | | | | - Add a message handler to the extensions
* - Fix persistence of llistAndi Gutmans2000-04-251-2/+2
|
* Implemented external list traversing.Andrei Zmievski2000-03-141-18/+26
|
* It's official now...Zeev Suraski2000-03-061-3/+3
|