summaryrefslogtreecommitdiff
path: root/win32/glob.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove local variablesPeter Kokot2019-02-031-9/+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.
* Remove unused Git attributes identPeter Kokot2018-07-251-1/+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.
* vim folds and modelinesAnatol Belski2017-07-041-0/+9
|
* trailing whitespace removalStanislav Malyshev2015-01-101-1/+1
|
* use proper declarations for zend_stat_tAnatol Belski2014-11-101-1/+2
|
* master renames phase 3Anatol Belski2014-08-251-3/+3
|
* first shot on merging the core fro the int64 branchAnatol Belski2014-08-161-3/+3
|
* - expose glob and globfree on wi ndows, can be used by shared ext (core or ↵Pierre Joye2009-01-011-2/+2
| | | | extern)
* - drop sys/ctype.h and use BEGIN/END_DECL_C insteadPierre Joye2008-08-221-4/+5
|
* Added glob() support for windows.Edin Kadribasic2002-05-191-0/+101