Skip to content

Commit 81e2cf0

Browse files
committed
Fix folding and clean up some extensions
1 parent 3bfd50f commit 81e2cf0

File tree

161 files changed

+1610
-834
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+1610
-834
lines changed

ext/aspell/aspell.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -221,5 +221,6 @@ PHP_MINFO_FUNCTION(aspell)
221221
* tab-width: 4
222222
* c-basic-offset: 4
223223
* End:
224-
* vim: sw=4 ts=4 tw=78 fdm=marker
224+
* vim600: sw=4 ts=4 tw=78 fdm=marker
225+
* vim<600: sw=4 ts=4 tw=78
225226
*/

ext/bcmath/bcmath.c

+2
Original file line numberDiff line numberDiff line change
@@ -499,4 +499,6 @@ PHP_FUNCTION(bcscale)
499499
* tab-width: 4
500500
* c-basic-offset: 4
501501
* End:
502+
* vim600: sw=4 ts=4 tw=78 fdm=marker
503+
* vim<600: sw=4 ts=4 tw=78
502504
*/

ext/calendar/cal_unix.c

+8
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,11 @@ PHP_FUNCTION(jdtounix)
7878
}
7979
/* }}} */
8080

81+
/*
82+
* Local variables:
83+
* tab-width: 4
84+
* c-basic-offset: 4
85+
* End:
86+
* vim600: sw=4 ts=4 tw=78 fdm=marker
87+
* vim<600: sw=4 ts=4 tw=78
88+
*/

ext/calendar/calendar.c

+8-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,6 @@ PHP_FUNCTION(jdtogregorian)
289289
}
290290
/* }}} */
291291

292-
293292
/* {{{ proto string jdmonthname(int juliandaycount, int mode)
294293
Returns name of month for julian day count */
295294
PHP_FUNCTION(jdmonthname)
@@ -339,3 +338,11 @@ PHP_FUNCTION(jdtogregorian)
339338
}
340339
/* }}} */
341340

341+
/*
342+
* Local variables:
343+
* tab-width: 4
344+
* c-basic-offset: 4
345+
* End:
346+
* vim600: sw=4 ts=4 tw=78 fdm=marker
347+
* vim<600: sw=4 ts=4 tw=78
348+
*/

ext/calendar/dow.c

+9
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,12 @@ char *DayNameLong[7] =
6565
"Friday",
6666
"Saturday"
6767
};
68+
69+
/*
70+
* Local variables:
71+
* tab-width: 4
72+
* c-basic-offset: 4
73+
* End:
74+
* vim600: sw=4 ts=4 tw=78 fdm=marker
75+
* vim<600: sw=4 ts=4 tw=78
76+
*/

ext/calendar/french.c

+10
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,13 @@ char *FrenchMonthName[14] =
148148
"Fructidor",
149149
"Extra"
150150
};
151+
152+
153+
/*
154+
* Local variables:
155+
* tab-width: 4
156+
* c-basic-offset: 4
157+
* End:
158+
* vim600: sw=4 ts=4 tw=78 fdm=marker
159+
* vim<600: sw=4 ts=4 tw=78
160+
*/

ext/calendar/jewish.c

+9
Original file line numberDiff line numberDiff line change
@@ -730,3 +730,12 @@ long int JewishToSdn(
730730
}
731731
return (sdn + SDN_OFFSET);
732732
}
733+
734+
/*
735+
* Local variables:
736+
* tab-width: 4
737+
* c-basic-offset: 4
738+
* End:
739+
* vim600: sw=4 ts=4 tw=78 fdm=marker
740+
* vim<600: sw=4 ts=4 tw=78
741+
*/

ext/calendar/julian.c

+9
Original file line numberDiff line numberDiff line change
@@ -238,3 +238,12 @@ long int JulianToSdn(
238238
+ inputDay
239239
- SDN_OFFSET);
240240
}
241+
242+
/*
243+
* Local variables:
244+
* tab-width: 4
245+
* c-basic-offset: 4
246+
* End:
247+
* vim600: sw=4 ts=4 tw=78 fdm=marker
248+
* vim<600: sw=4 ts=4 tw=78
249+
*/

ext/ccvs/ccvs.c

+10
Original file line numberDiff line numberDiff line change
@@ -593,3 +593,13 @@ PHP_MINFO_FUNCTION(ccvs)
593593
*/
594594

595595
}
596+
597+
598+
/*
599+
* Local variables:
600+
* tab-width: 4
601+
* c-basic-offset: 4
602+
* End:
603+
* vim600: sw=4 ts=4 tw=78 fdm=marker
604+
* vim<600: sw=4 ts=4 tw=78
605+
*/

ext/cpdf/cpdf.c

+11-20
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,16 @@
11
/*
22
+----------------------------------------------------------------------+
3-
| PHP HTML Embedded Scripting Language Version 3.0 |
3+
| PHP version 4.0 |
44
+----------------------------------------------------------------------+
5-
| Copyright (c) 1997-1999 PHP Development Team (See Credits file) |
5+
| Copyright (c) 1997-2001 The PHP Group |
66
+----------------------------------------------------------------------+
7-
| This program is free software; you can redistribute it and/or modify |
8-
| it under the terms of one of the following licenses: |
9-
| |
10-
| A) the GNU General Public License as published by the Free Software |
11-
| Foundation; either version 2 of the License, or (at your option) |
12-
| any later version. |
13-
| |
14-
| B) the PHP License as published by the PHP Development Team and |
15-
| included in the distribution in the file: LICENSE |
16-
| |
17-
| This program is distributed in the hope that it will be useful, |
18-
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
19-
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
20-
| GNU General Public License for more details. |
21-
| |
22-
| You should have received a copy of both licenses referred to here. |
23-
| If you did not, or have any questions about PHP licensing, please |
24-
| contact core@php.net. |
7+
| This source file is subject to version 2.02 of the PHP license, |
8+
| that is bundled with this package in the file LICENSE, and is |
9+
| available at through the world-wide-web at |
10+
| http://www.php.net/license/2_02.txt. |
11+
| If you did not receive a copy of the PHP license and are unable to |
12+
| obtain it through the world-wide-web, please send a note to |
13+
| license@php.net so we can mail you a copy immediately. |
2514
+----------------------------------------------------------------------+
2615
| Authors: Uwe Steinmann <Uwe.Steinmann@fernuni-hagen.de> |
2716
+----------------------------------------------------------------------+
@@ -2721,4 +2710,6 @@ PHP_FUNCTION(cpdf_add_outline) {
27212710
* tab-width: 4
27222711
* c-basic-offset: 4
27232712
* End:
2713+
* vim600: sw=4 ts=4 tw=78 fdm=marker
2714+
* vim<600: sw=4 ts=4 tw=78
27242715
*/

ext/crack/crack.c

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
+----------------------------------------------------------------------+
3+
| PHP version 4.0 |
4+
+----------------------------------------------------------------------+
5+
| Copyright (c) 1997-2001 The PHP Group |
6+
+----------------------------------------------------------------------+
7+
| This source file is subject to version 2.02 of the PHP license, |
8+
| that is bundled with this package in the file LICENSE, and is |
9+
| available at through the world-wide-web at |
10+
| http://www.php.net/license/2_02.txt. |
11+
| If you did not receive a copy of the PHP license and are unable to |
12+
| obtain it through the world-wide-web, please send a note to |
13+
| license@php.net so we can mail you a copy immediately. |
14+
+----------------------------------------------------------------------+
15+
| Authors: |
16+
+----------------------------------------------------------------------+
17+
*/
18+
/* $Id$ */
119
#ifdef HAVE_CONFIG_H
220
#include "config.h"
321
#endif
@@ -259,5 +277,6 @@ ZEND_FUNCTION(crack_getlastmessage)
259277
* tab-width: 4
260278
* c-basic-offset: 4
261279
* End:
262-
* vim: sw=4 ts=4 tw=78 fdm=marker
280+
* vim600: sw=4 ts=4 tw=78 fdm=marker
281+
* vim<600: sw=4 ts=4 tw=78
263282
*/

ext/ctype/ctype.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
| license@php.net so we can mail you a copy immediately. |
1414
+----------------------------------------------------------------------+
1515
| Authors: Hartmut Holzgraefe <hartmut@six.de> |
16-
| |
1716
+----------------------------------------------------------------------+
1817
*/
1918

@@ -326,5 +325,6 @@ PHP_FUNCTION(ctype_xdigit)
326325
* tab-width: 4
327326
* c-basic-offset: 4
328327
* End:
329-
* vim: sw=4 ts=4 tw=78 fdm=marker
328+
* vim600: sw=4 ts=4 tw=78 fdm=marker
329+
* vim<600: sw=4 ts=4 tw=78
330330
*/

ext/curl/curl.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -979,5 +979,6 @@ static void _php_curl_close(zend_rsrc_list_entry *rsrc)
979979
* tab-width: 4
980980
* c-basic-offset: 4
981981
* End:
982-
* vim: sw=4 ts=4 tw=78 fdm=marker
982+
* vim600: sw=4 ts=4 tw=78 fdm=marker
983+
* vim<600: sw=4 ts=4 tw=78
983984
*/

ext/cybercash/cybercash.c

+11-21
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,16 @@
11
/*
22
+----------------------------------------------------------------------+
3-
| PHP HTML Embedded Scripting Language Version 3.0 |
3+
| PHP version 4.0 |
44
+----------------------------------------------------------------------+
5-
| Copyright (c) 1997,1998 PHP Development Team (See Credits file) |
5+
| Copyright (c) 1997-2001 The PHP Group |
66
+----------------------------------------------------------------------+
7-
| This program is free software; you can redistribute it and/or modify |
8-
| it under the terms of one of the following licenses: |
9-
| |
10-
| A) the GNU General Public License as published by the Free Software |
11-
| Foundation; either version 2 of the License, or (at your option) |
12-
| any later version. |
13-
| |
14-
| B) the PHP License as published by the PHP Development Team and |
15-
| included in the distribution in the file: LICENSE |
16-
| |
17-
| This program is distributed in the hope that it will be useful, |
18-
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
19-
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
20-
| GNU General Public License for more details. |
21-
| |
22-
| You should have received a copy of both licenses referred to here. |
23-
| If you did not, or have any questions about PHP licensing, please |
24-
| contact core@php.net. |
7+
| This source file is subject to version 2.02 of the PHP license, |
8+
| that is bundled with this package in the file LICENSE, and is |
9+
| available at through the world-wide-web at |
10+
| http://www.php.net/license/2_02.txt. |
11+
| If you did not receive a copy of the PHP license and are unable to |
12+
| obtain it through the world-wide-web, please send a note to |
13+
| license@php.net so we can mail you a copy immediately. |
2514
+----------------------------------------------------------------------+
2615
| Authors: Evan Klinger <evan715@sirius.com> |
2716
| Timothy Whitfield <timothy@ametro.net> |
@@ -234,5 +223,6 @@ PHP_FUNCTION(cybercash_base64_decode)
234223
* tab-width: 4
235224
* c-basic-offset: 4
236225
* End:
237-
* vim: sw=4 ts=4 tw=78 fdm=marker
226+
* vim600: sw=4 ts=4 tw=78 fdm=marker
227+
* vim<600: sw=4 ts=4 tw=78
238228
*/

ext/cybermut/cybermut.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -178,5 +178,6 @@ PHP_FUNCTION(cybermut_creerreponsecm)
178178
* tab-width: 4
179179
* c-basic-offset: 4
180180
* End:
181-
* vim: sw=4 ts=4 tw=78 fdm=marker
181+
* vim600: sw=4 ts=4 tw=78 fdm=marker
182+
* vim<600: sw=4 ts=4 tw=78
182183
*/

ext/db/db.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1242,5 +1242,6 @@ ZEND_GET_MODULE(dbm)
12421242
* tab-width: 4
12431243
* c-basic-offset: 4
12441244
* End:
1245-
* vim: sw=4 ts=4 tw=78 fdm=marker
1245+
* vim600: sw=4 ts=4 tw=78 fdm=marker
1246+
* vim<600: sw=4 ts=4 tw=78
12461247
*/

ext/dba/dba.c

+11-21
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,16 @@
11
/*
22
+----------------------------------------------------------------------+
3-
| PHP HTML Embedded Scripting Language Version 3.0 |
3+
| PHP version 4.0 |
44
+----------------------------------------------------------------------+
5-
| Copyright (c) 1999 PHP Development Team (See Credits file) |
5+
| Copyright (c) 1997-2001 The PHP Group |
66
+----------------------------------------------------------------------+
7-
| This program is free software; you can redistribute it and/or modify |
8-
| it under the terms of one of the following licenses: |
9-
| |
10-
| A) the GNU General Public License as published by the Free Software |
11-
| Foundation; either version 2 of the License, or (at your option) |
12-
| any later version. |
13-
| |
14-
| B) the PHP License as published by the PHP Development Team and |
15-
| included in the distribution in the file: LICENSE |
16-
| |
17-
| This program is distributed in the hope that it will be useful, |
18-
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
19-
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
20-
| GNU General Public License for more details. |
21-
| |
22-
| You should have received a copy of both licenses referred to here. |
23-
| If you did not, or have any questions about PHP licensing, please |
24-
| contact core@php.net. |
7+
| This source file is subject to version 2.02 of the PHP license, |
8+
| that is bundled with this package in the file LICENSE, and is |
9+
| available at through the world-wide-web at |
10+
| http://www.php.net/license/2_02.txt. |
11+
| If you did not receive a copy of the PHP license and are unable to |
12+
| obtain it through the world-wide-web, please send a note to |
13+
| license@php.net so we can mail you a copy immediately. |
2514
+----------------------------------------------------------------------+
2615
| Authors: Sascha Schumann <sascha@schumann.cx> |
2716
+----------------------------------------------------------------------+
@@ -524,5 +513,6 @@ PHP_FUNCTION(dba_sync)
524513
* tab-width: 4
525514
* c-basic-offset: 4
526515
* End:
527-
* vim: sw=4 ts=4 tw=78 fdm=marker
516+
* vim600: sw=4 ts=4 tw=78 fdm=marker
517+
* vim<600: sw=4 ts=4 tw=78
528518
*/

ext/dba/dba_cdb.c

+11-21
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,16 @@
11
/*
22
+----------------------------------------------------------------------+
3-
| PHP HTML Embedded Scripting Language Version 3.0 |
3+
| PHP version 4.0 |
44
+----------------------------------------------------------------------+
5-
| Copyright (c) 1999 PHP Development Team (See Credits file) |
5+
| Copyright (c) 1997-2001 The PHP Group |
66
+----------------------------------------------------------------------+
7-
| This program is free software; you can redistribute it and/or modify |
8-
| it under the terms of one of the following licenses: |
9-
| |
10-
| A) the GNU General Public License as published by the Free Software |
11-
| Foundation; either version 2 of the License, or (at your option) |
12-
| any later version. |
13-
| |
14-
| B) the PHP License as published by the PHP Development Team and |
15-
| included in the distribution in the file: LICENSE |
16-
| |
17-
| This program is distributed in the hope that it will be useful, |
18-
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
19-
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
20-
| GNU General Public License for more details. |
21-
| |
22-
| You should have received a copy of both licenses referred to here. |
23-
| If you did not, or have any questions about PHP licensing, please |
24-
| contact core@php.net. |
7+
| This source file is subject to version 2.02 of the PHP license, |
8+
| that is bundled with this package in the file LICENSE, and is |
9+
| available at through the world-wide-web at |
10+
| http://www.php.net/license/2_02.txt. |
11+
| If you did not receive a copy of the PHP license and are unable to |
12+
| obtain it through the world-wide-web, please send a note to |
13+
| license@php.net so we can mail you a copy immediately. |
2514
+----------------------------------------------------------------------+
2615
| Authors: Sascha Schumann <sascha@schumann.cx> |
2716
+----------------------------------------------------------------------+
@@ -224,5 +213,6 @@ DBA_SYNC_FUNC(cdb)
224213
* tab-width: 4
225214
* c-basic-offset: 4
226215
* End:
227-
* vim: sw=4 ts=4 tw=78 fdm=marker
216+
* vim600: sw=4 ts=4 tw=78 fdm=marker
217+
* vim<600: sw=4 ts=4 tw=78
228218
*/

0 commit comments

Comments
 (0)