From 92ac598aabd336593a47ed3959f1031674b763e6 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Tue, 22 Jan 2019 21:39:32 +0100 Subject: Remove local variables 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. --- README.STREAMS | 2 -- README.WIN32-BUILD-SYSTEM | 2 -- TSRM/TSRM.c | 9 --------- TSRM/TSRM.h | 9 --------- TSRM/tsrm_config.w32.h | 9 --------- TSRM/tsrm_config_common.h | 9 --------- TSRM/tsrm_strtok_r.c | 9 --------- TSRM/tsrm_win32.c | 9 --------- TSRM/tsrm_win32.h | 9 --------- Zend/zend.c | 10 ---------- Zend/zend.h | 10 ---------- Zend/zend_API.c | 10 ---------- Zend/zend_API.h | 11 ----------- Zend/zend_alloc.c | 10 ---------- Zend/zend_alloc.h | 10 ---------- Zend/zend_alloc_sizes.h | 10 ---------- Zend/zend_arena.h | 10 ---------- Zend/zend_ast.c | 10 ---------- Zend/zend_ast.h | 10 ---------- Zend/zend_bitset.h | 10 ---------- Zend/zend_build.h | 10 ---------- Zend/zend_builtin_functions.c | 10 ---------- Zend/zend_builtin_functions.h | 10 ---------- Zend/zend_closures.c | 10 ---------- Zend/zend_closures.h | 10 ---------- Zend/zend_compile.c | 10 ---------- Zend/zend_compile.h | 10 ---------- Zend/zend_config.w32.h | 10 ---------- Zend/zend_constants.c | 11 ----------- Zend/zend_constants.h | 10 ---------- Zend/zend_cpuinfo.c | 8 -------- Zend/zend_cpuinfo.h | 8 -------- Zend/zend_default_classes.c | 10 ---------- Zend/zend_dtrace.c | 10 ---------- Zend/zend_dtrace.h | 10 ---------- Zend/zend_errors.h | 10 ---------- Zend/zend_exceptions.c | 10 ---------- Zend/zend_exceptions.h | 10 ---------- Zend/zend_execute.c | 10 ---------- Zend/zend_execute.h | 10 ---------- Zend/zend_execute_API.c | 10 ---------- Zend/zend_extensions.c | 10 ---------- Zend/zend_extensions.h | 10 ---------- Zend/zend_float.c | 10 ---------- Zend/zend_float.h | 10 ---------- Zend/zend_gc.c | 12 ------------ Zend/zend_gc.h | 10 ---------- Zend/zend_generators.c | 10 ---------- Zend/zend_generators.h | 10 ---------- Zend/zend_globals.h | 10 ---------- Zend/zend_globals_macros.h | 10 ---------- Zend/zend_hash.c | 10 ---------- Zend/zend_hash.h | 10 ---------- Zend/zend_highlight.c | 10 ---------- Zend/zend_highlight.h | 10 ---------- Zend/zend_inheritance.c | 10 ---------- Zend/zend_inheritance.h | 10 ---------- Zend/zend_ini.c | 10 ---------- Zend/zend_ini.h | 10 ---------- Zend/zend_ini_parser.y | 10 ---------- Zend/zend_ini_scanner.h | 10 ---------- Zend/zend_interfaces.c | 10 ---------- Zend/zend_interfaces.h | 10 ---------- Zend/zend_istdiostream.h | 10 ---------- Zend/zend_iterators.c | 10 ---------- Zend/zend_iterators.h | 10 ---------- Zend/zend_language_parser.y | 10 ---------- Zend/zend_language_scanner.h | 10 ---------- Zend/zend_list.c | 10 ---------- Zend/zend_list.h | 10 ---------- Zend/zend_llist.c | 10 ---------- Zend/zend_llist.h | 10 ---------- Zend/zend_long.h | 10 ---------- Zend/zend_map_ptr.h | 10 ---------- Zend/zend_modules.h | 10 ---------- Zend/zend_multibyte.c | 9 --------- Zend/zend_multibyte.h | 9 --------- Zend/zend_multiply.h | 10 ---------- Zend/zend_object_handlers.c | 10 ---------- Zend/zend_object_handlers.h | 10 ---------- Zend/zend_objects.c | 10 ---------- Zend/zend_objects.h | 10 ---------- Zend/zend_objects_API.c | 10 ---------- Zend/zend_objects_API.h | 10 ---------- Zend/zend_opcode.c | 10 ---------- Zend/zend_operators.c | 10 ---------- Zend/zend_operators.h | 10 ---------- Zend/zend_portability.h | 10 ---------- Zend/zend_ptr_stack.c | 9 --------- Zend/zend_ptr_stack.h | 10 ---------- Zend/zend_range_check.h | 10 ---------- Zend/zend_signal.c | 10 ---------- Zend/zend_signal.h | 10 ---------- Zend/zend_smart_str.c | 10 ---------- Zend/zend_smart_str.h | 10 ---------- Zend/zend_smart_str_public.h | 10 ---------- Zend/zend_smart_string.h | 10 ---------- Zend/zend_smart_string_public.h | 10 ---------- Zend/zend_sort.c | 9 --------- Zend/zend_sort.h | 10 ---------- Zend/zend_sprintf.c | 10 ---------- Zend/zend_stack.c | 10 ---------- Zend/zend_stack.h | 10 ---------- Zend/zend_stream.c | 10 ---------- Zend/zend_stream.h | 10 ---------- Zend/zend_string.c | 10 ---------- Zend/zend_string.h | 10 ---------- Zend/zend_strtod.c | 8 -------- Zend/zend_strtod.h | 10 ---------- Zend/zend_strtod_int.h | 10 ---------- Zend/zend_ts_hash.c | 8 -------- Zend/zend_ts_hash.h | 10 ---------- Zend/zend_type_info.h | 10 ---------- Zend/zend_types.h | 10 ---------- Zend/zend_variables.c | 8 -------- Zend/zend_variables.h | 10 ---------- Zend/zend_virtual_cwd.c | 7 ------- Zend/zend_virtual_cwd.h | 10 ---------- Zend/zend_vm.h | 10 ---------- configure.ac | 4 ---- ext/bcmath/bcmath.c | 9 --------- ext/bz2/bz2.c | 9 --------- ext/bz2/bz2_filter.c | 9 --------- ext/bz2/php_bz2.h | 8 -------- ext/calendar/cal_unix.c | 9 --------- ext/calendar/calendar.c | 9 --------- ext/calendar/dow.c | 9 --------- ext/calendar/easter.c | 7 ------- ext/calendar/french.c | 10 ---------- ext/calendar/jewish.c | 9 --------- ext/calendar/julian.c | 9 --------- ext/com_dotnet/com_com.c | 11 ----------- ext/com_dotnet/com_extension.c | 9 --------- ext/com_dotnet/com_persist.c | 9 --------- ext/com_dotnet/php_com_dotnet.h | 9 --------- ext/com_dotnet/tests/27974.phpt | 2 +- ext/com_dotnet/tests/bug39606.phpt | 2 +- ext/com_dotnet/tests/bug72498.phpt | 2 +- ext/com_dotnet/tests/bug73679.phpt | 2 +- ext/com_dotnet/tests/variants.phpt | 2 +- ext/com_dotnet/tests/variants_x64.phpt | 2 +- ext/ctype/ctype.c | 9 --------- ext/ctype/php_ctype.h | 8 -------- ext/curl/interface.c | 9 --------- ext/curl/multi.c | 9 --------- ext/curl/share.c | 9 --------- ext/date/php_date.c | 9 --------- ext/dba/dba.c | 9 --------- ext/dba/dba_cdb.c | 9 --------- ext/dba/dba_db1.c | 9 --------- ext/dba/dba_db2.c | 9 --------- ext/dba/dba_db3.c | 9 --------- ext/dba/dba_db4.c | 9 --------- ext/dba/dba_dbm.c | 9 --------- ext/dba/dba_flatfile.c | 9 --------- ext/dba/dba_gdbm.c | 9 --------- ext/dba/dba_inifile.c | 9 --------- ext/dba/dba_lmdb.c | 9 --------- ext/dba/dba_ndbm.c | 9 --------- ext/dba/dba_qdbm.c | 9 --------- ext/dba/dba_tcadb.c | 9 --------- ext/dba/libflatfile/flatfile.c | 9 --------- ext/dba/libinifile/inifile.c | 9 --------- ext/dba/php_tcadb.h | 9 --------- ext/dom/attr.c | 9 --------- ext/dom/cdatasection.c | 9 --------- ext/dom/characterdata.c | 9 --------- ext/dom/comment.c | 9 --------- ext/dom/document.c | 9 --------- ext/dom/documentfragment.c | 9 --------- ext/dom/documenttype.c | 9 --------- ext/dom/dom_ce.h | 9 --------- ext/dom/dom_fe.h | 9 --------- ext/dom/dom_iterators.c | 9 --------- ext/dom/dom_properties.h | 9 --------- ext/dom/domconfiguration.c | 9 --------- ext/dom/domerror.c | 9 --------- ext/dom/domerrorhandler.c | 9 --------- ext/dom/domexception.c | 9 --------- ext/dom/domimplementation.c | 9 --------- ext/dom/domimplementationlist.c | 9 --------- ext/dom/domimplementationsource.c | 9 --------- ext/dom/domlocator.c | 9 --------- ext/dom/domstringlist.c | 9 --------- ext/dom/element.c | 9 --------- ext/dom/entity.c | 9 --------- ext/dom/entityreference.c | 9 --------- ext/dom/namednodemap.c | 9 --------- ext/dom/namelist.c | 9 --------- ext/dom/node.c | 9 --------- ext/dom/nodelist.c | 9 --------- ext/dom/notation.c | 9 --------- ext/dom/php_dom.c | 9 --------- ext/dom/php_dom.h | 9 --------- ext/dom/processinginstruction.c | 9 --------- ext/dom/string_extend.c | 9 --------- ext/dom/text.c | 9 --------- ext/dom/typeinfo.c | 9 --------- ext/dom/userdatahandler.c | 9 --------- ext/dom/xml_common.h | 9 --------- ext/dom/xpath.c | 9 --------- ext/enchant/enchant.c | 9 --------- ext/enchant/php_enchant.h | 9 --------- ext/exif/exif.c | 9 --------- ext/ext_skel.php | 17 +++-------------- ext/ffi/ffi.c | 9 --------- ext/ffi/ffi.g | 9 --------- ext/ffi/ffi_parser.c | 9 --------- ext/ffi/php_ffi.h | 10 ---------- ext/fileinfo/fileinfo.c | 10 ---------- ext/fileinfo/php_fileinfo.h | 10 ---------- ext/filter/callback_filter.c | 9 --------- ext/filter/filter.c | 9 --------- ext/filter/filter_private.h | 9 --------- ext/filter/logical_filters.c | 9 --------- ext/filter/php_filter.h | 8 -------- ext/filter/sanitizing_filters.c | 9 --------- ext/ftp/ftp.c | 9 --------- ext/ftp/php_ftp.c | 8 -------- ext/gd/gd.c | 9 --------- ext/gd/gd_ctx.c | 9 --------- ext/gd/libgd/gd_xbm.c | 9 --------- ext/gettext/gettext.c | 9 --------- ext/gmp/gmp.c | 9 --------- ext/gmp/php_gmp.h | 8 -------- ext/hash/hash.c | 9 --------- ext/hash/hash_adler32.c | 9 --------- ext/hash/hash_crc32.c | 9 --------- ext/hash/hash_fnv.c | 9 --------- ext/hash/hash_gost.c | 9 --------- ext/hash/hash_haval.c | 9 --------- ext/hash/hash_joaat.c | 9 --------- ext/hash/hash_md.c | 9 --------- ext/hash/hash_ripemd.c | 9 --------- ext/hash/hash_sha.c | 9 --------- ext/hash/hash_sha3.c | 9 --------- ext/hash/hash_snefru.c | 9 --------- ext/hash/hash_tiger.c | 9 --------- ext/hash/hash_whirlpool.c | 9 --------- ext/hash/php_hash.h | 10 ---------- ext/hash/php_hash_adler32.h | 9 --------- ext/hash/php_hash_crc32.h | 9 --------- ext/hash/php_hash_crc32_tables.h | 9 --------- ext/hash/php_hash_fnv.h | 9 --------- ext/hash/php_hash_gost.h | 9 --------- ext/hash/php_hash_joaat.h | 9 --------- ext/hash/php_hash_sha3.h | 8 -------- ext/hash/php_hash_snefru.h | 9 --------- ext/hash/php_hash_snefru_tables.h | 9 --------- ext/hash/php_hash_tiger.h | 9 --------- ext/hash/php_hash_tiger_tables.h | 9 --------- ext/hash/php_hash_whirlpool.h | 9 --------- ext/hash/php_hash_whirlpool_tables.h | 9 --------- ext/iconv/iconv.c | 9 --------- ext/iconv/php_iconv.h | 7 ------- ext/iconv/tests/translit-utf8.phpt | 2 +- ext/imap/php_imap.c | 9 --------- ext/interbase/ibase_blobs.c | 9 --------- ext/interbase/ibase_events.c | 9 --------- ext/interbase/ibase_query.c | 9 --------- ext/interbase/ibase_service.c | 9 --------- ext/interbase/interbase.c | 9 --------- ext/interbase/php_ibase_includes.h | 7 ------- ext/interbase/php_interbase.h | 7 ------- ext/intl/collator/collator.c | 9 --------- ext/intl/collator/collator_attr.c | 9 --------- ext/intl/collator/collator_class.c | 9 --------- ext/intl/collator/collator_compare.c | 9 --------- ext/intl/collator/collator_convert.c | 8 -------- ext/intl/collator/collator_create.c | 9 --------- ext/intl/collator/collator_error.c | 9 --------- ext/intl/collator/collator_is_numeric.c | 9 --------- ext/intl/collator/collator_locale.c | 9 --------- ext/intl/collator/collator_sort.c | 9 --------- ext/intl/common/common_error.c | 9 --------- ext/intl/converter/converter.c | 9 --------- ext/intl/formatter/formatter.c | 9 --------- ext/intl/formatter/formatter_attr.c | 9 --------- ext/intl/formatter/formatter_class.c | 9 --------- ext/intl/formatter/formatter_data.c | 9 --------- ext/intl/formatter/formatter_format.c | 9 --------- ext/intl/formatter/formatter_main.c | 9 --------- ext/intl/formatter/formatter_parse.c | 9 --------- ext/intl/grapheme/grapheme_string.c | 9 --------- ext/intl/grapheme/grapheme_util.c | 9 --------- ext/intl/idn/idn.c | 10 ---------- ext/intl/intl_convert.c | 9 --------- ext/intl/intl_error.c | 9 --------- ext/intl/locale/locale.c | 9 --------- ext/intl/locale/locale_class.c | 9 --------- ext/intl/locale/locale_methods.c | 10 ---------- ext/intl/msgformat/msgformat.c | 9 --------- ext/intl/msgformat/msgformat_attr.c | 9 --------- ext/intl/msgformat/msgformat_class.c | 9 --------- ext/intl/msgformat/msgformat_data.c | 10 ---------- ext/intl/msgformat/msgformat_format.c | 9 --------- ext/intl/msgformat/msgformat_helpers.cpp | 9 --------- ext/intl/msgformat/msgformat_parse.c | 9 --------- ext/intl/normalizer/normalizer.c | 9 --------- ext/intl/normalizer/normalizer_class.c | 9 --------- ext/intl/normalizer/normalizer_normalize.c | 9 --------- ext/intl/php_intl.c | 9 --------- ext/intl/php_intl.h | 9 --------- ext/intl/resourcebundle/resourcebundle.c | 9 --------- ext/intl/resourcebundle/resourcebundle_class.c | 9 --------- ext/intl/resourcebundle/resourcebundle_iterator.c | 9 --------- ext/intl/spoofchecker/spoofchecker.c | 9 --------- ext/intl/spoofchecker/spoofchecker_class.c | 9 --------- ext/intl/spoofchecker/spoofchecker_create.c | 9 --------- ext/intl/spoofchecker/spoofchecker_main.c | 9 --------- ext/intl/transliterator/transliterator.c | 9 --------- ext/intl/transliterator/transliterator_class.c | 9 --------- ext/intl/transliterator/transliterator_methods.c | 10 ---------- ext/json/json.c | 9 --------- ext/json/json_encoder.c | 9 --------- ext/json/php_json.h | 9 --------- ext/ldap/ldap.c | 9 --------- ext/libxml/libxml.c | 9 --------- ext/libxml/php_libxml.h | 7 ------- ext/mbstring/config.m4 | 2 -- ext/mbstring/libmbfl/DISCLAIMER | 3 --- ext/mbstring/libmbfl/filters/html_entities.c | 7 ------- ext/mbstring/libmbfl/filters/mbfilter_armscii8.h | 7 ------- ext/mbstring/libmbfl/filters/mbfilter_hz.c | 8 -------- ext/mbstring/libmbfl/filters/mbfilter_koi8r.h | 7 ------- ext/mbstring/libmbfl/filters/mbfilter_koi8u.h | 7 ------- ext/mbstring/libmbfl/mbfl/mbfilter.c | 7 ------- ext/mbstring/libmbfl/mbfl/mbfilter.h | 4 ---- ext/mbstring/mb_gpc.c | 9 --------- ext/mbstring/mb_gpc.h | 9 --------- ext/mbstring/mbstring.c | 9 --------- ext/mbstring/mbstring.h | 7 ------- ext/mbstring/php_mbregex.c | 9 --------- ext/mbstring/php_mbregex.h | 9 --------- ext/mbstring/php_unicode.c | 9 --------- ext/mysqli/mysqli.c | 9 --------- ext/mysqli/mysqli_api.c | 9 --------- ext/mysqli/mysqli_driver.c | 10 ---------- ext/mysqli/mysqli_embedded.c | 10 ---------- ext/mysqli/mysqli_exception.c | 10 ---------- ext/mysqli/mysqli_fe.c | 9 --------- ext/mysqli/mysqli_nonapi.c | 10 ---------- ext/mysqli/mysqli_prop.c | 9 --------- ext/mysqli/mysqli_report.c | 9 --------- ext/mysqli/mysqli_result_iterator.c | 9 --------- ext/mysqli/mysqli_warning.c | 10 ---------- ext/mysqli/php_mysqli.h | 10 ---------- ext/mysqli/php_mysqli_structs.h | 11 ----------- ext/mysqlnd/config-win.h | 9 --------- ext/mysqlnd/mysql_float_to_double.h | 9 --------- ext/mysqlnd/mysqlnd.h | 10 ---------- ext/mysqlnd/mysqlnd_alloc.c | 10 ---------- ext/mysqlnd/mysqlnd_alloc.h | 9 --------- ext/mysqlnd/mysqlnd_auth.c | 10 ---------- ext/mysqlnd/mysqlnd_auth.h | 9 --------- ext/mysqlnd/mysqlnd_block_alloc.c | 9 --------- ext/mysqlnd/mysqlnd_block_alloc.h | 10 ---------- ext/mysqlnd/mysqlnd_charset.c | 10 ---------- ext/mysqlnd/mysqlnd_charset.h | 9 --------- ext/mysqlnd/mysqlnd_commands.c | 9 --------- ext/mysqlnd/mysqlnd_commands.h | 9 --------- ext/mysqlnd/mysqlnd_connection.c | 10 ---------- ext/mysqlnd/mysqlnd_connection.h | 9 --------- ext/mysqlnd/mysqlnd_debug.c | 10 ---------- ext/mysqlnd/mysqlnd_debug.h | 9 --------- ext/mysqlnd/mysqlnd_driver.c | 9 --------- ext/mysqlnd/mysqlnd_enum_n_def.h | 10 ---------- ext/mysqlnd/mysqlnd_ext_plugin.c | 10 ---------- ext/mysqlnd/mysqlnd_ext_plugin.h | 9 --------- ext/mysqlnd/mysqlnd_loaddata.c | 9 --------- ext/mysqlnd/mysqlnd_net.c | 11 ----------- ext/mysqlnd/mysqlnd_plugin.c | 10 ---------- ext/mysqlnd/mysqlnd_plugin.h | 10 ---------- ext/mysqlnd/mysqlnd_portability.h | 10 ---------- ext/mysqlnd/mysqlnd_priv.h | 9 --------- ext/mysqlnd/mysqlnd_protocol_frame_codec.c | 10 ---------- ext/mysqlnd/mysqlnd_protocol_frame_codec.h | 9 --------- ext/mysqlnd/mysqlnd_ps.c | 10 ---------- ext/mysqlnd/mysqlnd_ps.h | 9 --------- ext/mysqlnd/mysqlnd_ps_codec.c | 9 --------- ext/mysqlnd/mysqlnd_read_buffer.c | 9 --------- ext/mysqlnd/mysqlnd_result.c | 10 ---------- ext/mysqlnd/mysqlnd_result.h | 9 --------- ext/mysqlnd/mysqlnd_result_meta.c | 9 --------- ext/mysqlnd/mysqlnd_result_meta.h | 9 --------- ext/mysqlnd/mysqlnd_reverse_api.c | 10 ---------- ext/mysqlnd/mysqlnd_reverse_api.h | 9 --------- ext/mysqlnd/mysqlnd_statistics.c | 11 ----------- ext/mysqlnd/mysqlnd_statistics.h | 9 --------- ext/mysqlnd/mysqlnd_vio.c | 10 ---------- ext/mysqlnd/mysqlnd_vio.h | 9 --------- ext/mysqlnd/mysqlnd_wireprotocol.c | 10 ---------- ext/mysqlnd/mysqlnd_wireprotocol.h | 9 --------- ext/mysqlnd/php_mysqlnd.c | 9 --------- ext/mysqlnd/php_mysqlnd.h | 9 --------- ext/oci8/oci8.c | 9 --------- ext/oci8/oci8_collection.c | 9 --------- ext/oci8/oci8_failover.c | 9 --------- ext/oci8/oci8_interface.c | 9 --------- ext/oci8/oci8_lob.c | 9 --------- ext/oci8/oci8_statement.c | 9 --------- ext/oci8/php_oci8.h | 7 ------- ext/oci8/php_oci8_int.h | 9 --------- ext/odbc/php_odbc.c | 9 --------- ext/odbc/php_odbc.h | 7 ------- ext/odbc/php_odbc_includes.h | 7 ------- ext/opcache/Optimizer/dfa_pass.c | 8 -------- ext/opcache/Optimizer/escape_analysis.c | 8 -------- ext/opcache/Optimizer/zend_call_graph.c | 8 -------- ext/opcache/Optimizer/zend_call_graph.h | 8 -------- ext/opcache/Optimizer/zend_cfg.c | 8 -------- ext/opcache/Optimizer/zend_cfg.h | 8 -------- ext/opcache/Optimizer/zend_dfg.c | 8 -------- ext/opcache/Optimizer/zend_dfg.h | 8 -------- ext/opcache/Optimizer/zend_dump.c | 8 -------- ext/opcache/Optimizer/zend_dump.h | 8 -------- ext/opcache/Optimizer/zend_func_info.c | 8 -------- ext/opcache/Optimizer/zend_func_info.h | 8 -------- ext/opcache/Optimizer/zend_inference.c | 8 -------- ext/opcache/Optimizer/zend_inference.h | 8 -------- ext/opcache/Optimizer/zend_optimizer.c | 8 -------- ext/opcache/Optimizer/zend_ssa.c | 8 -------- ext/opcache/Optimizer/zend_ssa.h | 8 -------- ext/opcache/Optimizer/zend_worklist.h | 8 -------- ext/opcache/zend_accelerator_util_funcs.h | 7 ------- ext/openssl/openssl.c | 9 --------- ext/openssl/php_openssl.h | 7 ------- ext/openssl/xp_ssl.c | 9 --------- ext/pcntl/pcntl.c | 8 -------- ext/pcntl/php_pcntl.h | 9 --------- ext/pcntl/php_signal.c | 9 --------- ext/pcre/php_pcre.c | 9 --------- ext/pdo/README | 2 -- ext/pdo/config.m4 | 1 - ext/pdo/pdo.c | 9 --------- ext/pdo/pdo_dbh.c | 9 --------- ext/pdo/pdo_sql_parser.re | 9 --------- ext/pdo/pdo_stmt.c | 9 --------- ext/pdo/php_pdo.h | 10 ---------- ext/pdo/php_pdo_driver.h | 8 -------- ext/pdo/php_pdo_error.h | 8 -------- ext/pdo/php_pdo_int.h | 10 ---------- ext/pdo/tests/bug_34630.phpt | 2 +- ext/pdo/tests/bug_34687.phpt | 2 +- ext/pdo/tests/bug_35671.phpt | 2 +- ext/pdo/tests/bug_36428.phpt | 2 +- ext/pdo/tests/bug_38253.phpt | 2 +- ext/pdo/tests/bug_38394.phpt | 2 +- ext/pdo/tests/bug_39398.phpt | 2 +- ext/pdo/tests/bug_42917.phpt | 2 +- ext/pdo/tests/bug_43130.phpt | 2 +- ext/pdo/tests/bug_43139.phpt | 2 +- ext/pdo/tests/bug_43663.phpt | 2 +- ext/pdo/tests/bug_44159.phpt | 2 +- ext/pdo/tests/bug_44173.phpt | 2 +- ext/pdo/tests/bug_44409.phpt | 2 +- ext/pdo/tests/bug_44861.phpt | 2 +- ext/pdo/tests/bug_50458.phpt | 2 +- ext/pdo/tests/bug_52098.phpt | 2 +- ext/pdo/tests/bug_64172.phpt | 2 +- ext/pdo/tests/pdo_001.phpt | 2 +- ext/pdo/tests/pdo_002.phpt | 2 +- ext/pdo/tests/pdo_003.phpt | 2 +- ext/pdo/tests/pdo_004.phpt | 2 +- ext/pdo/tests/pdo_005.phpt | 2 +- ext/pdo/tests/pdo_006.phpt | 2 +- ext/pdo/tests/pdo_007.phpt | 2 +- ext/pdo/tests/pdo_008.phpt | 2 +- ext/pdo/tests/pdo_009.phpt | 2 +- ext/pdo/tests/pdo_010.phpt | 2 +- ext/pdo/tests/pdo_011.phpt | 2 +- ext/pdo/tests/pdo_012.phpt | 2 +- ext/pdo/tests/pdo_013.phpt | 2 +- ext/pdo/tests/pdo_014.phpt | 2 +- ext/pdo/tests/pdo_015.phpt | 2 +- ext/pdo/tests/pdo_016.phpt | 2 +- ext/pdo/tests/pdo_016a.phpt | 2 +- ext/pdo/tests/pdo_017.phpt | 2 +- ext/pdo/tests/pdo_018.phpt | 2 +- ext/pdo/tests/pdo_019.phpt | 2 +- ext/pdo/tests/pdo_020.phpt | 2 +- ext/pdo/tests/pdo_021.phpt | 2 +- ext/pdo/tests/pdo_022.phpt | 2 +- ext/pdo/tests/pdo_023.phpt | 2 +- ext/pdo/tests/pdo_024.phpt | 2 +- ext/pdo/tests/pdo_025.phpt | 2 +- ext/pdo/tests/pdo_026.phpt | 2 +- ext/pdo/tests/pdo_027.phpt | 2 +- ext/pdo/tests/pdo_028.phpt | 2 +- ext/pdo/tests/pdo_029.phpt | 2 +- ext/pdo/tests/pdo_030.phpt | 2 +- ext/pdo/tests/pdo_031.phpt | 2 +- ext/pdo/tests/pdo_032.phpt | 2 +- ext/pdo/tests/pdo_033.phpt | 2 +- ext/pdo/tests/pdo_034.phpt | 2 +- ext/pdo/tests/pdo_038.phpt | 2 +- ext/pdo/tests/pecl_bug_5217.phpt | 2 +- ext/pdo/tests/pecl_bug_5772.phpt | 2 +- ext/pdo/tests/pecl_bug_5809.phpt | 2 +- ext/pdo_dblib/tests/common.phpt | 2 +- ext/pdo_firebird/firebird_driver.c | 9 --------- ext/pdo_firebird/firebird_statement.c | 9 --------- ext/pdo_firebird/pdo_firebird.c | 9 --------- ext/pdo_firebird/php_pdo_firebird.h | 9 --------- ext/pdo_firebird/php_pdo_firebird_int.h | 9 --------- ext/pdo_firebird/tests/common.phpt | 2 +- ext/pdo_mysql/config.m4 | 1 - ext/pdo_mysql/mysql_driver.c | 9 --------- ext/pdo_mysql/mysql_statement.c | 9 --------- ext/pdo_mysql/pdo_mysql.c | 10 ---------- ext/pdo_mysql/php_pdo_mysql.h | 10 ---------- ext/pdo_mysql/tests/common.phpt | 2 +- ext/pdo_mysql/tests/pdo_mysql_stmt_getcolumnmeta.phpt | 2 +- ext/pdo_mysql/tests/pecl_bug_5780.phpt | 2 +- ext/pdo_mysql/tests/pecl_bug_5802.phpt | 2 +- ext/pdo_oci/config.m4 | 1 - ext/pdo_oci/oci_driver.c | 10 ---------- ext/pdo_oci/oci_statement.c | 10 ---------- ext/pdo_oci/pdo_oci.c | 9 --------- ext/pdo_oci/php_pdo_oci.h | 10 ---------- ext/pdo_oci/tests/common.phpt | 2 +- ext/pdo_oci/tests/pdo_oci_stmt_getcolumnmeta.phpt | 2 +- ext/pdo_odbc/config.m4 | 1 - ext/pdo_odbc/odbc_driver.c | 9 --------- ext/pdo_odbc/odbc_stmt.c | 9 --------- ext/pdo_odbc/pdo_odbc.c | 9 --------- ext/pdo_odbc/php_pdo_odbc.h | 10 ---------- ext/pdo_odbc/php_pdo_odbc_int.h | 9 --------- ext/pdo_odbc/tests/common.phpt | 2 +- ext/pdo_odbc/tests/long_columns.phpt | 2 +- ext/pdo_odbc/tests/max_columns.phpt | 2 +- ext/pdo_pgsql/config.m4 | 1 - ext/pdo_pgsql/pdo_pgsql.c | 9 --------- ext/pdo_pgsql/pgsql_driver.c | 9 --------- ext/pdo_pgsql/pgsql_statement.c | 9 --------- ext/pdo_pgsql/php_pdo_pgsql.h | 10 ---------- ext/pdo_pgsql/php_pdo_pgsql_int.h | 9 --------- ext/pdo_pgsql/tests/bug68199.phpt | 2 +- ext/pdo_pgsql/tests/common.phpt | 2 +- ext/pdo_pgsql/tests/config.inc | 2 +- ext/pdo_pgsql/tests/copy_from.phpt | 2 +- ext/pdo_pgsql/tests/copy_to.phpt | 2 +- ext/pdo_pgsql/tests/getnotify.phpt | 2 +- ext/pdo_pgsql/tests/is_in_transaction.phpt | 2 +- ext/pdo_pgsql/tests/large_objects.phpt | 2 +- ext/pdo_sqlite/config.m4 | 1 - ext/pdo_sqlite/pdo_sqlite.c | 9 --------- ext/pdo_sqlite/sqlite_driver.c | 9 --------- ext/pdo_sqlite/sqlite_statement.c | 9 --------- ext/pdo_sqlite/tests/bug33841.phpt | 2 +- ext/pdo_sqlite/tests/bug35336.phpt | 2 +- ext/pdo_sqlite/tests/bug46542.phpt | 2 +- ext/pdo_sqlite/tests/bug52487.phpt | 2 +- ext/pdo_sqlite/tests/common.phpt | 2 +- ext/pgsql/pgsql.c | 9 --------- ext/phar/dirstream.c | 9 --------- ext/phar/dirstream.h | 9 --------- ext/phar/func_interceptors.c | 9 --------- ext/phar/func_interceptors.h | 9 --------- ext/phar/phar.c | 9 --------- ext/phar/phar_internal.h | 9 --------- ext/phar/phar_object.c | 9 --------- ext/phar/pharzip.h | 8 -------- ext/phar/php_phar.h | 10 ---------- ext/phar/stream.c | 9 --------- ext/phar/stream.h | 9 --------- ext/phar/tar.c | 9 --------- ext/phar/util.c | 9 --------- ext/phar/zip.c | 9 --------- ext/posix/posix.c | 9 --------- ext/pspell/pspell.c | 9 --------- ext/readline/readline.c | 7 ------- ext/readline/readline_cli.c | 9 --------- ext/recode/recode.c | 7 ------- ext/reflection/php_reflection.c | 9 --------- ext/reflection/php_reflection.h | 8 -------- ext/session/mod_files.c | 9 --------- ext/session/mod_mm.c | 9 --------- ext/session/mod_user.c | 9 --------- ext/session/session.c | 9 --------- ext/shmop/php_shmop.h | 8 -------- ext/shmop/shmop.c | 9 --------- ext/simplexml/php_simplexml.h | 10 ---------- ext/simplexml/php_simplexml_exports.h | 10 ---------- ext/simplexml/simplexml.c | 10 ---------- ext/simplexml/sxe.c | 9 --------- ext/simplexml/sxe.h | 9 --------- ext/skeleton/php_skeleton.h | 1 - ext/skeleton/skeleton.c | 1 - ext/snmp/snmp.c | 9 --------- ext/soap/php_http.c | 8 -------- ext/soap/soap.c | 11 ----------- ext/sockets/php_sockets.h | 7 ------- ext/sockets/sockets.c | 9 --------- ext/sodium/libsodium.c | 9 --------- ext/sodium/php_libsodium.h | 9 --------- ext/spl/php_spl.c | 9 --------- ext/spl/php_spl.h | 9 --------- ext/spl/spl_array.c | 9 --------- ext/spl/spl_array.h | 9 --------- ext/spl/spl_directory.c | 9 --------- ext/spl/spl_directory.h | 9 --------- ext/spl/spl_dllist.c | 9 --------- ext/spl/spl_dllist.h | 9 --------- ext/spl/spl_engine.c | 9 --------- ext/spl/spl_engine.h | 9 --------- ext/spl/spl_exceptions.c | 9 --------- ext/spl/spl_exceptions.h | 9 --------- ext/spl/spl_fixedarray.c | 10 ---------- ext/spl/spl_fixedarray.h | 9 --------- ext/spl/spl_functions.c | 9 --------- ext/spl/spl_functions.h | 9 --------- ext/spl/spl_heap.c | 9 --------- ext/spl/spl_heap.h | 9 --------- ext/spl/spl_iterators.c | 9 --------- ext/spl/spl_iterators.h | 9 --------- ext/spl/spl_observer.c | 9 --------- ext/spl/spl_observer.h | 9 --------- ext/spl/tests/bug38618.phpt | 2 +- ext/sqlite3/config0.m4 | 1 - ext/sqlite3/php_sqlite3.h | 8 -------- ext/sqlite3/php_sqlite3_structs.h | 9 --------- ext/sqlite3/sqlite3.c | 9 --------- ext/standard/array.c | 9 --------- ext/standard/assert.c | 9 --------- ext/standard/base64.c | 9 --------- ext/standard/base64.h | 7 ------- ext/standard/basic_functions.c | 9 --------- ext/standard/browscap.c | 9 --------- ext/standard/crc32.c | 9 --------- ext/standard/crc32.h | 9 --------- ext/standard/credits.c | 9 --------- ext/standard/crypt.c | 9 --------- ext/standard/css.c | 9 --------- ext/standard/cyr_convert.c | 9 --------- ext/standard/datetime.c | 9 --------- ext/standard/dir.c | 9 --------- ext/standard/dl.c | 9 --------- ext/standard/dns.c | 9 --------- ext/standard/exec.c | 9 --------- ext/standard/file.c | 9 --------- ext/standard/filestat.c | 9 --------- ext/standard/filters.c | 9 --------- ext/standard/flock_compat.c | 9 --------- ext/standard/formatted_print.c | 9 --------- ext/standard/fsock.c | 9 --------- ext/standard/fsock.h | 7 ------- ext/standard/ftok.c | 7 ------- ext/standard/ftp_fopen_wrapper.c | 10 ---------- ext/standard/head.c | 8 -------- ext/standard/hrtime.c | 9 --------- ext/standard/html.c | 9 --------- ext/standard/http.c | 9 --------- ext/standard/http_fopen_wrapper.c | 9 --------- ext/standard/image.c | 9 --------- ext/standard/incomplete_class.c | 9 --------- ext/standard/info.c | 9 --------- ext/standard/iptc.c | 9 --------- ext/standard/lcg.c | 9 --------- ext/standard/levenshtein.c | 9 --------- ext/standard/link.c | 9 --------- ext/standard/link_win32.c | 9 --------- ext/standard/mail.c | 9 --------- ext/standard/math.c | 9 --------- ext/standard/md5.c | 9 --------- ext/standard/metaphone.c | 9 --------- ext/standard/microtime.c | 9 --------- ext/standard/mt_rand.c | 9 --------- ext/standard/pack.c | 9 --------- ext/standard/pageinfo.c | 9 --------- ext/standard/password.c | 9 --------- ext/standard/php_crypt.h | 7 ------- ext/standard/php_fopen_wrapper.c | 10 ---------- ext/standard/php_http.h | 9 --------- ext/standard/php_password.h | 8 -------- ext/standard/php_random.h | 7 ------- ext/standard/php_standard.h | 8 -------- ext/standard/php_uuencode.h | 7 ------- ext/standard/proc_open.c | 9 --------- ext/standard/quot_print.c | 9 --------- ext/standard/rand.c | 9 --------- ext/standard/random.c | 9 --------- ext/standard/scanf.c | 9 --------- ext/standard/sha1.c | 9 --------- ext/standard/soundex.c | 9 --------- ext/standard/streamsfuncs.c | 9 --------- ext/standard/streamsfuncs.h | 9 --------- ext/standard/string.c | 9 --------- ext/standard/strnatcmp.c | 9 --------- ext/standard/syslog.c | 9 --------- ext/standard/tests/file/bug27508.phpt | 2 +- ext/standard/tests/file/fopencookie.phpt | 1 - ext/standard/tests/file/userfilters.phpt | 2 +- ext/standard/tests/file/userstreams.phpt | 1 - ext/standard/tests/file/userwrapper.phpt | 2 +- ext/standard/tests/filters/basic.phpt | 1 - ext/standard/tests/general_functions/proc_open-mb0.phpt | 2 +- ext/standard/tests/general_functions/proc_open-mb1.phpt | 2 +- ext/standard/tests/general_functions/proc_open.phpt | 2 +- ext/standard/tests/math/bug21523.phpt | 2 +- ext/standard/tests/math/bug24142.phpt | 2 +- ext/standard/tests/network/bug20134.phpt | 2 +- ext/standard/tests/network/tcp4loop.phpt | 2 +- ext/standard/tests/network/udgloop.phpt | 2 +- ext/standard/tests/network/udp6loop.phpt | 2 +- ext/standard/tests/network/unixloop.phpt | 2 +- ext/standard/type.c | 9 --------- ext/standard/uniqid.c | 9 --------- ext/standard/url.c | 9 --------- ext/standard/url.h | 7 ------- ext/standard/user_filters.c | 10 ---------- ext/standard/uuencode.c | 9 --------- ext/standard/var.c | 9 --------- ext/standard/versioning.c | 8 -------- ext/sysvmsg/php_sysvmsg.h | 9 --------- ext/sysvmsg/sysvmsg.c | 9 --------- ext/sysvmsg/tests/001.phpt | 2 +- ext/sysvsem/sysvsem.c | 9 --------- ext/sysvsem/tests/nowait.phpt | 2 +- ext/sysvsem/tests/sysv.phpt | 2 +- ext/sysvshm/sysvshm.c | 9 --------- ext/tidy/php_tidy.h | 9 --------- ext/tidy/tidy.c | 9 --------- ext/tokenizer/php_tokenizer.h | 9 --------- ext/tokenizer/tokenizer.c | 9 --------- ext/wddx/wddx.c | 9 --------- ext/xml/compat.c | 10 ---------- ext/xml/expat_compat.h | 7 ------- ext/xml/php_xml.h | 7 ------- ext/xml/tests/bug32001.phpt | 1 - ext/xml/tests/bug32001b.phpt | 1 - ext/xml/tests/xml007.phpt | 2 +- ext/xml/xml.c | 9 --------- ext/xmlreader/php_xmlreader.c | 9 --------- ext/xmlreader/php_xmlreader.h | 9 --------- ext/xmlrpc/php_xmlrpc.h | 8 -------- ext/xmlrpc/xmlrpc-epi-php.c | 7 ------- ext/xmlwriter/php_xmlwriter.c | 9 --------- ext/xmlwriter/php_xmlwriter.h | 9 --------- ext/xsl/php_xsl.c | 9 --------- ext/xsl/php_xsl.h | 10 ---------- ext/xsl/xsl_fe.h | 9 --------- ext/xsl/xsltprocessor.c | 9 --------- ext/zend_test/php_test.h | 10 ---------- ext/zip/php_zip.c | 9 --------- ext/zip/php_zip.h | 9 --------- ext/zlib/php_zlib.h | 8 -------- ext/zlib/tests/gzreadgzwrite.phpt | 2 +- ext/zlib/tests/gzreadgzwriteplain.phpt | 2 +- ext/zlib/zlib.c | 9 --------- ext/zlib/zlib_filter.c | 9 --------- ext/zlib/zlib_fopen_wrapper.c | 9 --------- footer | 8 -------- main/SAPI.c | 9 --------- main/SAPI.h | 9 --------- main/alloca.c | 9 --------- main/explicit_bzero.c | 8 -------- main/fastcgi.c | 9 --------- main/fastcgi.h | 9 --------- main/fopen_wrappers.c | 9 --------- main/fopen_wrappers.h | 8 -------- main/getopt.c | 9 --------- main/http_status_codes.h | 8 -------- main/internal_functions.c.in | 7 ------- main/internal_functions_win32.c | 9 --------- main/main.c | 9 --------- main/mergesort.c | 9 --------- main/network.c | 9 --------- main/output.c | 9 --------- main/php.h | 9 --------- main/php_compat.h | 8 -------- main/php_content_types.c | 9 --------- main/php_content_types.h | 8 -------- main/php_getopt.h | 9 --------- main/php_globals.h | 9 --------- main/php_ini.c | 10 ---------- main/php_ini.h | 8 -------- main/php_main.h | 8 -------- main/php_memory_streams.h | 9 --------- main/php_network.h | 9 --------- main/php_open_temporary_file.c | 9 --------- main/php_open_temporary_file.h | 8 -------- main/php_output.h | 9 --------- main/php_reentrancy.h | 8 -------- main/php_scandir.c | 9 --------- main/php_scandir.h | 8 -------- main/php_sprintf.c | 9 --------- main/php_stdint.h | 9 --------- main/php_streams.h | 8 -------- main/php_syslog.c | 9 --------- main/php_syslog.h | 9 --------- main/php_ticks.c | 9 --------- main/php_ticks.h | 9 --------- main/php_variables.c | 9 --------- main/php_variables.h | 8 -------- main/reentrancy.c | 9 --------- main/rfc1867.c | 9 --------- main/rfc1867.h | 8 -------- main/snprintf.c | 9 --------- main/snprintf.h | 9 --------- main/spprintf.c | 9 --------- main/spprintf.h | 9 --------- main/streams/cast.c | 9 --------- main/streams/filter.c | 9 --------- main/streams/glob_wrapper.c | 9 --------- main/streams/memory.c | 9 --------- main/streams/mmap.c | 9 --------- main/streams/php_stream_context.h | 10 ---------- main/streams/php_stream_filter_api.h | 9 --------- main/streams/php_stream_glob_wrapper.h | 9 --------- main/streams/php_stream_mmap.h | 9 --------- main/streams/php_stream_plain_wrapper.h | 9 --------- main/streams/php_stream_transport.h | 9 --------- main/streams/php_stream_userspace.h | 9 --------- main/streams/plain_wrapper.c | 9 --------- main/streams/streams.c | 9 --------- main/streams/transports.c | 9 --------- main/streams/xp_socket.c | 10 ---------- main/strlcat.c | 9 --------- main/strlcpy.c | 9 --------- php.ini-development | 4 ---- php.ini-production | 4 ---- run-tests.php | 8 -------- sapi/apache2handler/apache_config.c | 9 --------- sapi/apache2handler/config.m4 | 4 ---- sapi/apache2handler/mod_php7.c | 9 --------- sapi/apache2handler/php_functions.c | 9 --------- sapi/apache2handler/sapi_apache2.c | 9 --------- sapi/cgi/cgi_main.c | 9 --------- sapi/cli/cli.h | 9 --------- sapi/cli/generate_mime_type_map.php | 9 --------- sapi/cli/mime_type_map.h | 9 --------- sapi/cli/php_cli.c | 9 --------- sapi/cli/php_cli_process_title.c | 9 --------- sapi/cli/php_cli_process_title.h | 9 --------- sapi/cli/php_cli_server.c | 9 --------- sapi/cli/php_cli_server.h | 9 --------- sapi/embed/php_embed.c | 9 --------- sapi/fpm/fpm/fpm_main.c | 9 --------- sapi/litespeed/lsapi_main.c | 10 ---------- sapi/phpdbg/config.m4 | 4 ---- win32/build/deplister.c | 9 --------- win32/codepage.c | 8 -------- win32/codepage.h | 9 --------- win32/console.c | 9 --------- win32/console.h | 9 --------- win32/cp_enc_map_gen.c | 9 --------- win32/dllmain.c | 9 --------- win32/fnmatch.c | 9 --------- win32/fnmatch.h | 9 --------- win32/ftok.c | 9 --------- win32/getrusage.c | 9 --------- win32/getrusage.h | 9 --------- win32/glob.c | 9 --------- win32/glob.h | 9 --------- win32/globals.c | 9 --------- win32/grp.h | 9 --------- win32/inet.c | 9 --------- win32/inet.h | 9 --------- win32/ioutil.c | 9 --------- win32/ioutil.h | 9 --------- win32/ipc.h | 9 --------- win32/nice.c | 9 --------- win32/nice.h | 9 --------- win32/param.h | 9 --------- win32/php_inttypes.h | 9 --------- win32/php_registry.h | 9 --------- win32/php_stdbool.h | 9 --------- win32/php_stdint.h | 9 --------- win32/php_win32_globals.h | 9 --------- win32/readdir.c | 9 --------- win32/readdir.h | 9 --------- win32/registry.c | 9 --------- win32/resource.h | 9 --------- win32/select.c | 9 --------- win32/select.h | 9 --------- win32/sendmail.c | 9 --------- win32/sendmail.h | 9 --------- win32/signal.h | 9 --------- win32/sockets.c | 9 --------- win32/sockets.h | 9 --------- win32/syslog.h | 9 --------- win32/time.c | 9 --------- win32/time.h | 9 --------- win32/unistd.h | 9 --------- win32/winutil.c | 9 --------- win32/winutil.h | 9 --------- win32/wsyslog.c | 8 -------- 888 files changed, 111 insertions(+), 7004 deletions(-) delete mode 100644 footer diff --git a/README.STREAMS b/README.STREAMS index 7c521749bb..6ef69c733a 100644 --- a/README.STREAMS +++ b/README.STREAMS @@ -374,5 +374,3 @@ the example above, you need to use mysql_free_result on the rowset, close the connection and then use pefree to dispose of the struct you allocated. You may read the stream->persistent field to determine if your struct was allocated in persistent mode or not. - -vim:tw=78:et diff --git a/README.WIN32-BUILD-SYSTEM b/README.WIN32-BUILD-SYSTEM index e46d0e4210..32ebc6b691 100644 --- a/README.WIN32-BUILD-SYSTEM +++ b/README.WIN32-BUILD-SYSTEM @@ -1,5 +1,3 @@ The Win32 Build System. See https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2 - -vim:tw=78:sw=1:ts=1:et diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c index 183df2c420..63ae6efc23 100644 --- a/TSRM/TSRM.c +++ b/TSRM/TSRM.c @@ -794,12 +794,3 @@ TSRM_API const char *tsrm_api_name(void) }/*}}}*/ #endif /* ZTS */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/TSRM/TSRM.h b/TSRM/TSRM.h index 0fa2ccb48b..061459e77d 100644 --- a/TSRM/TSRM.h +++ b/TSRM/TSRM.h @@ -210,12 +210,3 @@ TSRM_API const char *tsrm_api_name(void); #endif /* ZTS */ #endif /* TSRM_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/TSRM/tsrm_config.w32.h b/TSRM/tsrm_config.w32.h index ab45141179..ec5c576298 100644 --- a/TSRM/tsrm_config.w32.h +++ b/TSRM/tsrm_config.w32.h @@ -12,12 +12,3 @@ #include #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/TSRM/tsrm_config_common.h b/TSRM/tsrm_config_common.h index f70f7a5c41..64cecd912a 100644 --- a/TSRM/tsrm_config_common.h +++ b/TSRM/tsrm_config_common.h @@ -69,12 +69,3 @@ char *alloca (); #endif #endif /* TSRM_CONFIG_COMMON_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/TSRM/tsrm_strtok_r.c b/TSRM/tsrm_strtok_r.c index cf0b0e672c..472105b43e 100644 --- a/TSRM/tsrm_strtok_r.c +++ b/TSRM/tsrm_strtok_r.c @@ -61,12 +61,3 @@ main() } #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/TSRM/tsrm_win32.c b/TSRM/tsrm_win32.c index 276e5e3930..704d30e209 100644 --- a/TSRM/tsrm_win32.c +++ b/TSRM/tsrm_win32.c @@ -820,12 +820,3 @@ TSRM_API int win32_utime(const char *filename, struct utimbuf *buf) /* {{{ */ /* }}} */ #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/TSRM/tsrm_win32.h b/TSRM/tsrm_win32.h index 23603ec84b..1ae9beaf2c 100644 --- a/TSRM/tsrm_win32.h +++ b/TSRM/tsrm_win32.h @@ -109,12 +109,3 @@ TSRM_API void *shmat(int key, const void *shmaddr, int flags); TSRM_API int shmdt(const void *shmaddr); TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend.c b/Zend/zend.c index 599d894091..6dc1c9c4cc 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -1740,13 +1740,3 @@ ZEND_API void zend_map_ptr_extend(size_t last) CG(map_ptr_last) = last; } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend.h b/Zend/zend.h index 31fd8ec5b4..7228541b66 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -354,13 +354,3 @@ ZEND_API void zend_restore_error_handling(zend_error_handling *saved); #include "zend_operators.h" #endif /* ZEND_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_API.c b/Zend/zend_API.c index 0f3479cfe0..60f0e29931 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -4407,13 +4407,3 @@ ZEND_API zend_bool zend_is_countable(zval *countable) /* {{{ */ } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_API.h b/Zend/zend_API.h index ade5ef3332..7d9aad4e4b 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -1579,14 +1579,3 @@ static zend_always_inline void zend_parse_arg_zval_deref(zval *arg, zval **dest, END_EXTERN_C() #endif /* ZEND_API_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 9cb48d9006..505201a98c 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -2948,13 +2948,3 @@ ZEND_API void * __zend_realloc(void *p, size_t len) } zend_out_of_memory(); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h index aaa3f12fab..abe6ec8e12 100644 --- a/Zend/zend_alloc.h +++ b/Zend/zend_alloc.h @@ -401,13 +401,3 @@ static void apc_init_heap(void) END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_alloc_sizes.h b/Zend/zend_alloc_sizes.h index c0e9790d7e..9f1c00eaad 100644 --- a/Zend/zend_alloc_sizes.h +++ b/Zend/zend_alloc_sizes.h @@ -62,13 +62,3 @@ _(29, 3072, 4, 3, x, y) #endif /* ZEND_ALLOC_SIZES_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_arena.h b/Zend/zend_arena.h index f93294a5fa..a27d00d345 100644 --- a/Zend/zend_arena.h +++ b/Zend/zend_arena.h @@ -111,13 +111,3 @@ static zend_always_inline void zend_arena_release(zend_arena **arena_ptr, void * } #endif /* _ZEND_ARENA_H_ */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_ast.c b/Zend/zend_ast.c index 3c8c133c76..2cacd53287 100644 --- a/Zend/zend_ast.c +++ b/Zend/zend_ast.c @@ -2044,13 +2044,3 @@ ZEND_API ZEND_COLD zend_string *zend_ast_export(const char *prefix, zend_ast *as smart_str_0(&str); return str.s; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_ast.h b/Zend/zend_ast.h index a3a5ed461d..499b8b4191 100644 --- a/Zend/zend_ast.h +++ b/Zend/zend_ast.h @@ -335,13 +335,3 @@ static zend_always_inline zend_ast *zend_ast_list_rtrim(zend_ast *ast) { return ast; } #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_bitset.h b/Zend/zend_bitset.h index 02c133ded3..2a227e4822 100644 --- a/Zend/zend_bitset.h +++ b/Zend/zend_bitset.h @@ -252,13 +252,3 @@ static inline int zend_bitset_pop_first(zend_bitset set, uint32_t len) { } #endif /* _ZEND_BITSET_H_ */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_build.h b/Zend/zend_build.h index 11856c3972..c604fb311a 100644 --- a/Zend/zend_build.h +++ b/Zend/zend_build.h @@ -44,13 +44,3 @@ #define ZEND_BUILD_EXTRA #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 74f78c6fb0..ab365967bd 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -2731,13 +2731,3 @@ ZEND_FUNCTION(get_extension_funcs) } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_builtin_functions.h b/Zend/zend_builtin_functions.h index 25c3cc6b08..cfc347ed41 100644 --- a/Zend/zend_builtin_functions.h +++ b/Zend/zend_builtin_functions.h @@ -27,13 +27,3 @@ ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int END_EXTERN_C() #endif /* ZEND_BUILTIN_FUNCTIONS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_closures.c b/Zend/zend_closures.c index ab042bcbd4..065034cc9e 100644 --- a/Zend/zend_closures.c +++ b/Zend/zend_closures.c @@ -763,13 +763,3 @@ void zend_closure_bind_var_ex(zval *closure_zv, uint32_t offset, zval *val) /* { ZVAL_COPY_VALUE(var, val); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_closures.h b/Zend/zend_closures.h index 620162f00e..6e27ddc8df 100644 --- a/Zend/zend_closures.h +++ b/Zend/zend_closures.h @@ -41,13 +41,3 @@ ZEND_API zval* zend_get_closure_this_ptr(zval *obj); END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 1eeece3c42..cb7b30c265 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -8700,13 +8700,3 @@ void zend_eval_const_expr(zend_ast **ast_ptr) /* {{{ */ *ast_ptr = zend_ast_create_zval(&result); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 626104deeb..84d6b9f7b3 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -1074,13 +1074,3 @@ END_EXTERN_C() ZEND_API zend_bool zend_binary_op_produces_numeric_string_error(uint32_t opcode, zval *op1, zval *op2); #endif /* ZEND_COMPILE_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_config.w32.h b/Zend/zend_config.w32.h index 0c3a57d051..85384f0b0e 100644 --- a/Zend/zend_config.w32.h +++ b/Zend/zend_config.w32.h @@ -85,13 +85,3 @@ extern "C++" { #define ZEND_DLIMPORT __declspec(dllimport) #endif /* ZEND_CONFIG_W32_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_constants.c b/Zend/zend_constants.c index 0f3fb9cfa0..a10220cac5 100644 --- a/Zend/zend_constants.c +++ b/Zend/zend_constants.c @@ -530,14 +530,3 @@ ZEND_API int zend_register_constant(zend_constant *c) } return ret; } - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_constants.h b/Zend/zend_constants.h index fec4f294e9..ba0c798dc6 100644 --- a/Zend/zend_constants.h +++ b/Zend/zend_constants.h @@ -94,13 +94,3 @@ END_EXTERN_C() #define ZEND_CONSTANT_DTOR free_zend_constant #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_cpuinfo.c b/Zend/zend_cpuinfo.c index 4cbd2ac776..1b53a851bc 100644 --- a/Zend/zend_cpuinfo.c +++ b/Zend/zend_cpuinfo.c @@ -107,11 +107,3 @@ ZEND_API int zend_cpu_supports(zend_cpu_feature feature) { return (cpuinfo.ecx & feature); } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/Zend/zend_cpuinfo.h b/Zend/zend_cpuinfo.h index 2cd9626d11..492be74435 100644 --- a/Zend/zend_cpuinfo.h +++ b/Zend/zend_cpuinfo.h @@ -203,11 +203,3 @@ static zend_always_inline int zend_cpu_supports_avx2() { #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/Zend/zend_default_classes.c b/Zend/zend_default_classes.c index 8c0998e62e..e5ef403c4e 100644 --- a/Zend/zend_default_classes.c +++ b/Zend/zend_default_classes.c @@ -34,13 +34,3 @@ ZEND_API void zend_register_default_classes(void) zend_register_closure_ce(); zend_register_generator_ce(); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_dtrace.c b/Zend/zend_dtrace.c index 52ceb472f7..750fb686c8 100644 --- a/Zend/zend_dtrace.c +++ b/Zend/zend_dtrace.c @@ -112,13 +112,3 @@ ZEND_API void dtrace_execute_internal(zend_execute_data *execute_data, zval *ret /* }}} */ #endif /* HAVE_DTRACE */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_dtrace.h b/Zend/zend_dtrace.h index 9276ef7c60..c4fedadd40 100644 --- a/Zend/zend_dtrace.h +++ b/Zend/zend_dtrace.h @@ -44,13 +44,3 @@ ZEND_API void dtrace_execute_internal(zend_execute_data *execute_data, zval *ret #endif #endif /* _ZEND_DTRACE_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_errors.h b/Zend/zend_errors.h index 9932b1e47e..441458c033 100644 --- a/Zend/zend_errors.h +++ b/Zend/zend_errors.h @@ -40,13 +40,3 @@ #define E_CORE (E_CORE_ERROR | E_CORE_WARNING) #endif /* ZEND_ERRORS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index b3086989da..8352348a53 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -1046,13 +1046,3 @@ ZEND_API ZEND_COLD void zend_throw_exception_object(zval *exception) /* {{{ */ zend_throw_exception_internal(exception); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_exceptions.h b/Zend/zend_exceptions.h index ec73a6e753..5f31c4b25b 100644 --- a/Zend/zend_exceptions.h +++ b/Zend/zend_exceptions.h @@ -80,13 +80,3 @@ static zend_always_inline void zend_rethrow_exception(zend_execute_data *execute END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 2b832b6f0d..92ddef051e 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -4457,13 +4457,3 @@ ZEND_API int ZEND_FASTCALL zend_check_arg_type(zend_function *zf, uint32_t arg_n { return zend_verify_arg_type(zf, arg_num, arg, default_value, cache_slot); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index b5f08bcfe8..f58b9d7c95 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -473,13 +473,3 @@ ZEND_COLD void zend_verify_property_type_error(zend_property_info *info, zval *p END_EXTERN_C() #endif /* ZEND_EXECUTE_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index e9a4e074e6..f5d08f1f0d 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -1633,13 +1633,3 @@ ZEND_API int zend_forbid_dynamic_call(const char *func_name) /* {{{ */ return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_extensions.c b/Zend/zend_extensions.c index 5ebfcc6bf3..2509daf318 100644 --- a/Zend/zend_extensions.c +++ b/Zend/zend_extensions.c @@ -329,13 +329,3 @@ ZEND_API size_t zend_extensions_op_array_persist(zend_op_array *op_array, void * } return 0; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_extensions.h b/Zend/zend_extensions.h index ee94505fa2..a5c9a6f8bc 100644 --- a/Zend/zend_extensions.h +++ b/Zend/zend_extensions.h @@ -154,13 +154,3 @@ ZEND_API size_t zend_extensions_op_array_persist(zend_op_array *op_array, void * END_EXTERN_C() #endif /* ZEND_EXTENSIONS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_float.c b/Zend/zend_float.c index a062ef7681..90af0c4a5f 100644 --- a/Zend/zend_float.c +++ b/Zend/zend_float.c @@ -54,13 +54,3 @@ ZEND_API void zend_ensure_fpu_mode(void) /* {{{ */ XPFPA_SWITCH_DOUBLE(); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_float.h b/Zend/zend_float.h index 9db23f4e22..dc1a451589 100644 --- a/Zend/zend_float.h +++ b/Zend/zend_float.h @@ -416,13 +416,3 @@ END_EXTERN_C() #endif /* FPU CONTROL */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_gc.c b/Zend/zend_gc.c index 94787de88a..4d3f829412 100644 --- a/Zend/zend_gc.c +++ b/Zend/zend_gc.c @@ -1432,15 +1432,3 @@ ZEND_API void zend_gc_get_status(zend_gc_status *status) status->threshold = GC_G(gc_threshold); status->num_roots = GC_G(num_roots); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - * - * vim:noexpandtab: - */ diff --git a/Zend/zend_gc.h b/Zend/zend_gc.h index c1c6c1b1fc..377bd4298a 100644 --- a/Zend/zend_gc.h +++ b/Zend/zend_gc.h @@ -81,13 +81,3 @@ static zend_always_inline void gc_check_possible_root(zend_refcounted *ref) } #endif /* ZEND_GC_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_generators.c b/Zend/zend_generators.c index 8e121e3374..9e7e5fe28f 100644 --- a/Zend/zend_generators.c +++ b/Zend/zend_generators.c @@ -1225,13 +1225,3 @@ void zend_register_generator_ce(void) /* {{{ */ zend_ce_ClosedGeneratorException = zend_register_internal_class_ex(&ce, zend_ce_exception); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_generators.h b/Zend/zend_generators.h index 950abb8c23..abccf3a529 100644 --- a/Zend/zend_generators.h +++ b/Zend/zend_generators.h @@ -134,13 +134,3 @@ static zend_always_inline zend_generator *zend_generator_get_current(zend_genera END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index 2b15a6578f..c60a07e9ee 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -298,13 +298,3 @@ struct _zend_php_scanner_globals { }; #endif /* ZEND_GLOBALS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_globals_macros.h b/Zend/zend_globals_macros.h index 4064cb794a..18181a433e 100644 --- a/Zend/zend_globals_macros.h +++ b/Zend/zend_globals_macros.h @@ -67,13 +67,3 @@ extern ZEND_API zend_ini_scanner_globals ini_scanner_globals; END_EXTERN_C() #endif /* ZEND_GLOBALS_MACROS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_hash.c b/Zend/zend_hash.c index 4b02913f18..f95034a60f 100644 --- a/Zend/zend_hash.c +++ b/Zend/zend_hash.c @@ -2818,13 +2818,3 @@ convert: return new_ht; } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_hash.h b/Zend/zend_hash.h index f1f64b50c7..6cfa7e8821 100644 --- a/Zend/zend_hash.h +++ b/Zend/zend_hash.h @@ -1161,13 +1161,3 @@ static zend_always_inline void _zend_hash_append_ind(HashTable *ht, zend_string } #endif /* ZEND_HASH_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_highlight.c b/Zend/zend_highlight.c index d97cfd2b6b..5e94df0a99 100644 --- a/Zend/zend_highlight.c +++ b/Zend/zend_highlight.c @@ -228,13 +228,3 @@ ZEND_API void zend_strip(void) /* Discard parse errors thrown during tokenization */ zend_clear_exception(); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_highlight.h b/Zend/zend_highlight.h index beb272678d..92a4dbccd3 100644 --- a/Zend/zend_highlight.h +++ b/Zend/zend_highlight.h @@ -48,13 +48,3 @@ END_EXTERN_C() extern zend_syntax_highlighter_ini syntax_highlighter_ini; #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_inheritance.c b/Zend/zend_inheritance.c index efe727207f..acf09629d0 100644 --- a/Zend/zend_inheritance.c +++ b/Zend/zend_inheritance.c @@ -2043,13 +2043,3 @@ ZEND_API void zend_do_link_class(zend_class_entry *ce, zend_class_entry *parent) zend_build_properties_info_table(ce); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_inheritance.h b/Zend/zend_inheritance.h index bb4b9d6241..9f3668191a 100644 --- a/Zend/zend_inheritance.h +++ b/Zend/zend_inheritance.h @@ -36,13 +36,3 @@ void zend_build_properties_info_table(zend_class_entry *ce); END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c index 0fdaf95ab5..e4b9e6bc5e 100644 --- a/Zend/zend_ini.c +++ b/Zend/zend_ini.c @@ -698,13 +698,3 @@ ZEND_API ZEND_INI_MH(OnUpdateStringUnempty) /* {{{ */ return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_ini.h b/Zend/zend_ini.h index 2db667ae8e..0b7f148083 100644 --- a/Zend/zend_ini.h +++ b/Zend/zend_ini.h @@ -195,13 +195,3 @@ typedef struct _zend_ini_parser_param { } zend_ini_parser_param; #endif /* ZEND_INI_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_ini_parser.y b/Zend/zend_ini_parser.y index e5a28d2bdc..6245dc5e0a 100644 --- a/Zend/zend_ini_parser.y +++ b/Zend/zend_ini_parser.y @@ -417,13 +417,3 @@ constant_string: | TC_STRING { $$ = $1; /*printf("TC_STRING: '%s'\n", Z_STRVAL($1));*/ } | TC_WHITESPACE { $$ = $1; /*printf("TC_WHITESPACE: '%s'\n", Z_STRVAL($1));*/ } ; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_ini_scanner.h b/Zend/zend_ini_scanner.h index 9887b82e53..ddb9247d37 100644 --- a/Zend/zend_ini_scanner.h +++ b/Zend/zend_ini_scanner.h @@ -35,13 +35,3 @@ void shutdown_ini_scanner(void); END_EXTERN_C() #endif /* _ZEND_INI_SCANNER_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_interfaces.c b/Zend/zend_interfaces.c index 4717ea4090..e5b6251d17 100644 --- a/Zend/zend_interfaces.c +++ b/Zend/zend_interfaces.c @@ -593,13 +593,3 @@ ZEND_API void zend_register_interfaces(void) REGISTER_MAGIC_INTERFACE(countable, Countable); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_interfaces.h b/Zend/zend_interfaces.h index 20d9e13ab4..44770a1813 100644 --- a/Zend/zend_interfaces.h +++ b/Zend/zend_interfaces.h @@ -80,13 +80,3 @@ ZEND_API int zend_class_unserialize_deny(zval *object, zend_class_entry *ce, con END_EXTERN_C() #endif /* ZEND_INTERFACES_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_istdiostream.h b/Zend/zend_istdiostream.h index 66a5ff4991..74470d2ae5 100644 --- a/Zend/zend_istdiostream.h +++ b/Zend/zend_istdiostream.h @@ -32,13 +32,3 @@ public: #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_iterators.c b/Zend/zend_iterators.c index 1339afbbc7..379a316c38 100644 --- a/Zend/zend_iterators.c +++ b/Zend/zend_iterators.c @@ -102,13 +102,3 @@ ZEND_API zend_object_iterator* zend_iterator_unwrap(zval *array_ptr) } return NULL; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_iterators.h b/Zend/zend_iterators.h index f026851306..941b260885 100644 --- a/Zend/zend_iterators.h +++ b/Zend/zend_iterators.h @@ -78,13 +78,3 @@ ZEND_API void zend_iterator_dtor(zend_object_iterator *iter); ZEND_API void zend_register_iterator_wrapper(void); END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_language_parser.y b/Zend/zend_language_parser.y index 7d5efb6434..8e0728f4b5 100644 --- a/Zend/zend_language_parser.y +++ b/Zend/zend_language_parser.y @@ -1369,13 +1369,3 @@ static YYSIZE_T zend_yytnamerr(char *yyres, const char *yystr) yystpcpy(yyres, yystr); return strlen(yystr); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_language_scanner.h b/Zend/zend_language_scanner.h index 64af4e2d9a..3640b9a5ea 100644 --- a/Zend/zend_language_scanner.h +++ b/Zend/zend_language_scanner.h @@ -74,13 +74,3 @@ ZEND_API void zend_lex_tstring(zval *zv); END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_list.c b/Zend/zend_list.c index 7d48c3fe6b..293eeadd04 100644 --- a/Zend/zend_list.c +++ b/Zend/zend_list.c @@ -349,13 +349,3 @@ ZEND_API zend_resource* zend_register_persistent_resource(const char *key, size_ zend_string_release_ex(str, 1); return ret; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_list.h b/Zend/zend_list.h index 83522c0bce..0bec20a280 100644 --- a/Zend/zend_list.h +++ b/Zend/zend_list.h @@ -74,13 +74,3 @@ extern ZEND_API int le_index_ptr; /* list entry type for index pointers */ END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_llist.c b/Zend/zend_llist.c index 268dbc36fa..4a2c22e632 100644 --- a/Zend/zend_llist.c +++ b/Zend/zend_llist.c @@ -307,13 +307,3 @@ ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos) } return NULL; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_llist.h b/Zend/zend_llist.h index ce6abe8df5..b9155ce6cb 100644 --- a/Zend/zend_llist.h +++ b/Zend/zend_llist.h @@ -74,13 +74,3 @@ ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos); END_EXTERN_C() #endif /* ZEND_LLIST_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_long.h b/Zend/zend_long.h index fb48913e0c..3b651e69d0 100644 --- a/Zend/zend_long.h +++ b/Zend/zend_long.h @@ -127,13 +127,3 @@ static const char long_min_digits[] = LONG_MIN_DIGITS; #endif #endif /* ZEND_LONG_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_map_ptr.h b/Zend/zend_map_ptr.h index 5543894d3a..5c88ce0bc4 100644 --- a/Zend/zend_map_ptr.h +++ b/Zend/zend_map_ptr.h @@ -83,13 +83,3 @@ ZEND_API void *zend_map_ptr_new(void); ZEND_API void zend_map_ptr_extend(size_t last); #endif /* ZEND_MAP_PTR_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h index 4b8e30d810..2558b475cd 100644 --- a/Zend/zend_modules.h +++ b/Zend/zend_modules.h @@ -129,13 +129,3 @@ int module_registry_unload_temp(const zend_module_entry *module); END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_multibyte.c b/Zend/zend_multibyte.c index 2bd74a7278..956ffbb74f 100644 --- a/Zend/zend_multibyte.c +++ b/Zend/zend_multibyte.c @@ -210,12 +210,3 @@ ZEND_API int zend_multibyte_set_script_encoding_by_string(const char *new_value, return SUCCESS; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_multibyte.h b/Zend/zend_multibyte.h index 51202e5edd..19444eda83 100644 --- a/Zend/zend_multibyte.h +++ b/Zend/zend_multibyte.h @@ -77,12 +77,3 @@ ZEND_API int zend_multibyte_set_script_encoding_by_string(const char *new_value, END_EXTERN_C() #endif /* ZEND_MULTIBYTE_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_multiply.h b/Zend/zend_multiply.h index 5cb7136623..a3827d25d1 100644 --- a/Zend/zend_multiply.h +++ b/Zend/zend_multiply.h @@ -341,13 +341,3 @@ static zend_always_inline size_t zend_safe_addmult(size_t nmemb, size_t size, si } #endif /* ZEND_MULTIPLY_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_object_handlers.c b/Zend/zend_object_handlers.c index 36e8d40ec2..b252c4e4bd 100644 --- a/Zend/zend_object_handlers.c +++ b/Zend/zend_object_handlers.c @@ -1884,13 +1884,3 @@ ZEND_API const zend_object_handlers std_object_handlers = { NULL, /* compare */ NULL, /* get_properties_for */ }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_object_handlers.h b/Zend/zend_object_handlers.h index 59ce69fecd..b65e53d7c5 100644 --- a/Zend/zend_object_handlers.h +++ b/Zend/zend_object_handlers.h @@ -257,13 +257,3 @@ ZEND_API HashTable *zend_get_properties_for(zval *obj, zend_prop_purpose purpose END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_objects.c b/Zend/zend_objects.c index 151557cd9e..80efb8c895 100644 --- a/Zend/zend_objects.c +++ b/Zend/zend_objects.c @@ -307,13 +307,3 @@ ZEND_API zend_object *zend_objects_clone_obj(zval *zobject) return new_object; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_objects.h b/Zend/zend_objects.h index 6f11ee7a10..cb0015599b 100644 --- a/Zend/zend_objects.h +++ b/Zend/zend_objects.h @@ -33,13 +33,3 @@ ZEND_API zend_object *zend_objects_clone_obj(zval *object); END_EXTERN_C() #endif /* ZEND_OBJECTS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_objects_API.c b/Zend/zend_objects_API.c index 33ffa2e866..efd8492c7b 100644 --- a/Zend/zend_objects_API.c +++ b/Zend/zend_objects_API.c @@ -194,13 +194,3 @@ ZEND_API void ZEND_FASTCALL zend_objects_store_del(zend_object *object) /* {{{ * } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_objects_API.h b/Zend/zend_objects_API.h index 633662f27f..b9a838e7bb 100644 --- a/Zend/zend_objects_API.h +++ b/Zend/zend_objects_API.h @@ -115,13 +115,3 @@ static inline zend_property_info *zend_get_typed_property_info_for_slot(zend_obj #endif /* ZEND_OBJECTS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index c46f3dacbd..1093909c83 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -1075,13 +1075,3 @@ ZEND_API binary_op_type get_binary_op(int opcode) return (binary_op_type) NULL; } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index d4f13cc6cc..bf2f5771fb 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -3246,13 +3246,3 @@ ZEND_API zend_long ZEND_FASTCALL zend_dval_to_lval_slow(double d) } #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index 9ad996dad5..11e9c3f413 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -875,13 +875,3 @@ static zend_always_inline void zend_unwrap_reference(zval *op) /* {{{ */ END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_portability.h b/Zend/zend_portability.h index 9aab49bfda..cc11bb4b40 100644 --- a/Zend/zend_portability.h +++ b/Zend/zend_portability.h @@ -642,13 +642,3 @@ static zend_always_inline double _zend_get_nan(void) /* {{{ */ #endif #endif /* ZEND_PORTABILITY_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_ptr_stack.c b/Zend/zend_ptr_stack.c index f80341a2b5..2030cc132b 100644 --- a/Zend/zend_ptr_stack.c +++ b/Zend/zend_ptr_stack.c @@ -115,12 +115,3 @@ ZEND_API int zend_ptr_stack_num_elements(zend_ptr_stack *stack) { return stack->top; } -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_ptr_stack.h b/Zend/zend_ptr_stack.h index 30e8f20860..2298e4f211 100644 --- a/Zend/zend_ptr_stack.h +++ b/Zend/zend_ptr_stack.h @@ -116,13 +116,3 @@ static zend_always_inline void *zend_ptr_stack_top(zend_ptr_stack *stack) } #endif /* ZEND_PTR_STACK_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_range_check.h b/Zend/zend_range_check.h index 2181eb9b2e..9c822493fa 100644 --- a/Zend/zend_range_check.h +++ b/Zend/zend_range_check.h @@ -65,13 +65,3 @@ #define ZEND_SIZE_T_LTE_ZEND_LONG(size, zlong) ((zlong) >= 0 && (size) <= (size_t)(zlong)) #endif /* ZEND_RANGE_CHECK_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_signal.c b/Zend/zend_signal.c index e9d364dca1..5d8da648cd 100644 --- a/Zend/zend_signal.c +++ b/Zend/zend_signal.c @@ -437,13 +437,3 @@ ZEND_API void zend_signal_startup(void) #endif /* ZEND_SIGNALS */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_signal.h b/Zend/zend_signal.h index 449f4f0a8a..0ec533cc5e 100644 --- a/Zend/zend_signal.h +++ b/Zend/zend_signal.h @@ -111,13 +111,3 @@ ZEND_API int zend_sigaction(int signo, const struct sigaction *act, struct sigac #endif /* ZEND_SIGNALS */ #endif /* ZEND_SIGNAL_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_smart_str.c b/Zend/zend_smart_str.c index 86cf836d62..1a5eb455ad 100644 --- a/Zend/zend_smart_str.c +++ b/Zend/zend_smart_str.c @@ -171,13 +171,3 @@ ZEND_API void ZEND_FASTCALL _smart_string_alloc(smart_string *str, size_t len) str->c = erealloc2(str->c, str->a + 1, str->len); } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_smart_str.h b/Zend/zend_smart_str.h index 5cfde449d4..2dab1f809a 100644 --- a/Zend/zend_smart_str.h +++ b/Zend/zend_smart_str.h @@ -150,13 +150,3 @@ static zend_always_inline void smart_str_setl(smart_str *dest, const char *src, } #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_smart_str_public.h b/Zend/zend_smart_str_public.h index 397009641c..ba0b399881 100644 --- a/Zend/zend_smart_str_public.h +++ b/Zend/zend_smart_str_public.h @@ -25,13 +25,3 @@ typedef struct { } smart_str; #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_smart_string.h b/Zend/zend_smart_string.h index 403843d462..4580e43769 100644 --- a/Zend/zend_smart_string.h +++ b/Zend/zend_smart_string.h @@ -113,13 +113,3 @@ static zend_always_inline void smart_string_reset(smart_string *str) { } #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_smart_string_public.h b/Zend/zend_smart_string_public.h index 1d8496ccf4..e39d67c16e 100644 --- a/Zend/zend_smart_string_public.h +++ b/Zend/zend_smart_string_public.h @@ -29,13 +29,3 @@ typedef struct { } smart_string; #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_sort.c b/Zend/zend_sort.c index 1a7c639cdc..4fe3835edb 100644 --- a/Zend/zend_sort.c +++ b/Zend/zend_sort.c @@ -372,12 +372,3 @@ done: } } /* }}} */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_sort.h b/Zend/zend_sort.h index c65dc1d21b..e2ef938df7 100644 --- a/Zend/zend_sort.h +++ b/Zend/zend_sort.h @@ -27,13 +27,3 @@ ZEND_API void zend_insert_sort(void *base, size_t nmemb, size_t siz, compare_fun END_EXTERN_C() #endif /* ZEND_SORT_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_sprintf.c b/Zend/zend_sprintf.c index ab139e96f4..8259a52830 100644 --- a/Zend/zend_sprintf.c +++ b/Zend/zend_sprintf.c @@ -36,13 +36,3 @@ int zend_sprintf(char *buffer, const char *format, ...) return len; } #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_stack.c b/Zend/zend_stack.c index 904f9a4f67..51f68b5c9a 100644 --- a/Zend/zend_stack.c +++ b/Zend/zend_stack.c @@ -162,13 +162,3 @@ ZEND_API void zend_stack_clean(zend_stack *stack, void (*func)(void *), zend_boo stack->top = stack->max = 0; } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_stack.h b/Zend/zend_stack.h index e19c7974ec..912850a25e 100644 --- a/Zend/zend_stack.h +++ b/Zend/zend_stack.h @@ -47,13 +47,3 @@ END_EXTERN_C() #define ZEND_STACK_APPLY_BOTTOMUP 2 #endif /* ZEND_STACK_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_stream.c b/Zend/zend_stream.c index 6de9344f35..4b32203cbb 100644 --- a/Zend/zend_stream.c +++ b/Zend/zend_stream.c @@ -342,13 +342,3 @@ ZEND_API int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle * } return 0; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_stream.h b/Zend/zend_stream.h index d153d3babc..c98969a3b4 100644 --- a/Zend/zend_stream.h +++ b/Zend/zend_stream.h @@ -103,13 +103,3 @@ typedef struct stat zend_stat_t; #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_string.c b/Zend/zend_string.c index 98514310c1..b94d4d5334 100644 --- a/Zend/zend_string.c +++ b/Zend/zend_string.c @@ -447,13 +447,3 @@ ZEND_API zend_bool ZEND_FASTCALL I_WRAP_SONAME_FNNAME_ZU(NONE,zend_string_equal_ #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_string.h b/Zend/zend_string.h index 4d8017245e..caa018347e 100644 --- a/Zend/zend_string.h +++ b/Zend/zend_string.h @@ -451,13 +451,3 @@ ZEND_KNOWN_STRINGS(_ZEND_STR_ID) } zend_known_string_id; #endif /* ZEND_STRING_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c index 3aa99f8d98..a6648978c4 100644 --- a/Zend/zend_strtod.c +++ b/Zend/zend_strtod.c @@ -4543,11 +4543,3 @@ static void destroy_freelist(void) #ifdef __cplusplus } #endif -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_strtod.h b/Zend/zend_strtod.h index 6db9a3324e..ea81827df2 100644 --- a/Zend/zend_strtod.h +++ b/Zend/zend_strtod.h @@ -34,13 +34,3 @@ ZEND_API int zend_shutdown_strtod(void); END_EXTERN_C() #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_strtod_int.h b/Zend/zend_strtod_int.h index 99649f8cdd..5fe31f940d 100644 --- a/Zend/zend_strtod_int.h +++ b/Zend/zend_strtod_int.h @@ -145,13 +145,3 @@ typedef unsigned long int uint32_t; #endif #endif /* ZEND_STRTOD_INT_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_ts_hash.c b/Zend/zend_ts_hash.c index bcc679ac6a..3cff54bf6c 100644 --- a/Zend/zend_ts_hash.c +++ b/Zend/zend_ts_hash.c @@ -353,11 +353,3 @@ ZEND_API zval *zend_ts_hash_str_add(TsHashTable *ht, const char *key, size_t len return retval; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/Zend/zend_ts_hash.h b/Zend/zend_ts_hash.h index 53ebd18a5a..f719e25a88 100644 --- a/Zend/zend_ts_hash.h +++ b/Zend/zend_ts_hash.h @@ -136,13 +136,3 @@ END_EXTERN_C() zend_ts_hash_init(ht, n, NULL, ZVAL_PTR_DTOR, persistent) #endif /* ZEND_HASH_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_type_info.h b/Zend/zend_type_info.h index a27f35e6f8..72550b6fc3 100644 --- a/Zend/zend_type_info.h +++ b/Zend/zend_type_info.h @@ -56,13 +56,3 @@ #define MAY_BE_CLASS (1<<24) #endif /* ZEND_TYPE_INFO_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_types.h b/Zend/zend_types.h index b96e8ba0ac..4d33e3ae9d 100644 --- a/Zend/zend_types.h +++ b/Zend/zend_types.h @@ -1255,13 +1255,3 @@ static zend_always_inline uint32_t zval_delref_p(zval* pz) { } while (0) #endif /* ZEND_TYPES_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_variables.c b/Zend/zend_variables.c index d758a46222..810866a1be 100644 --- a/Zend/zend_variables.c +++ b/Zend/zend_variables.c @@ -131,11 +131,3 @@ ZEND_API void ZEND_FASTCALL zval_copy_ctor_func(zval *zvalue) ZVAL_NEW_STR(zvalue, zend_string_dup(Z_STR_P(zvalue), 0)); } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/Zend/zend_variables.h b/Zend/zend_variables.h index ddd3403f59..bdee8b1879 100644 --- a/Zend/zend_variables.h +++ b/Zend/zend_variables.h @@ -94,13 +94,3 @@ END_EXTERN_C() #define ZVAL_INTERNAL_PTR_DTOR zval_internal_ptr_dtor #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_virtual_cwd.c b/Zend/zend_virtual_cwd.c index bd5fe48186..3998b46aa1 100644 --- a/Zend/zend_virtual_cwd.c +++ b/Zend/zend_virtual_cwd.c @@ -1690,10 +1690,3 @@ CWD_API char *tsrm_realpath(const char *path, char *real_path) /* {{{ */ } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/Zend/zend_virtual_cwd.h b/Zend/zend_virtual_cwd.h index 51bbfc6aeb..c6c06f6332 100644 --- a/Zend/zend_virtual_cwd.h +++ b/Zend/zend_virtual_cwd.h @@ -365,13 +365,3 @@ extern void virtual_cwd_main_cwd_init(uint8_t); #endif #endif /* VIRTUAL_CWD_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/Zend/zend_vm.h b/Zend/zend_vm.h index 45630690b3..f246e7fb77 100644 --- a/Zend/zend_vm.h +++ b/Zend/zend_vm.h @@ -38,13 +38,3 @@ END_EXTERN_C() #define ZEND_VM_SET_OPCODE_HANDLER(opline) zend_vm_set_opcode_handler(opline) #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/configure.ac b/configure.ac index 2da7776e53..3d95aba831 100644 --- a/configure.ac +++ b/configure.ac @@ -1696,7 +1696,3 @@ Check '[$]0 --help' for available options fi ]) AC_OUTPUT - -dnl ## Local Variables: -dnl ## tab-width: 4 -dnl ## End: diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index 1c5d41ecb6..33be8465c2 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -560,12 +560,3 @@ PHP_FUNCTION(bcscale) #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/bz2/bz2.c b/ext/bz2/bz2.c index 9b790669be..cf1029f4d0 100644 --- a/ext/bz2/bz2.c +++ b/ext/bz2/bz2.c @@ -671,12 +671,3 @@ static void php_bz2_error(INTERNAL_FUNCTION_PARAMETERS, int opt) /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/bz2/bz2_filter.c b/ext/bz2/bz2_filter.c index 7488ceab6d..e7d7c3334f 100644 --- a/ext/bz2/bz2_filter.c +++ b/ext/bz2/bz2_filter.c @@ -401,12 +401,3 @@ const php_stream_filter_factory php_bz2_filter_factory = { php_bz2_filter_create }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/bz2/php_bz2.h b/ext/bz2/php_bz2.h index f8367cf0f2..9523f32e14 100644 --- a/ext/bz2/php_bz2.h +++ b/ext/bz2/php_bz2.h @@ -65,11 +65,3 @@ extern const php_stream_ops php_stream_bz2io_ops; #define PHP_BZ2_FILTER_DEFAULT_WORKFACTOR 0 #endif - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/calendar/cal_unix.c b/ext/calendar/cal_unix.c index 0f5769b442..e24ac56a25 100644 --- a/ext/calendar/cal_unix.c +++ b/ext/calendar/cal_unix.c @@ -66,12 +66,3 @@ PHP_FUNCTION(jdtounix) RETURN_LONG(uday * 24 * 3600); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/calendar/calendar.c b/ext/calendar/calendar.c index 666097bbee..721311316f 100644 --- a/ext/calendar/calendar.c +++ b/ext/calendar/calendar.c @@ -750,12 +750,3 @@ PHP_FUNCTION(jdmonthname) RETURN_STRING(monthname); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/calendar/dow.c b/ext/calendar/dow.c index 2e47bb352d..38da7e157c 100644 --- a/ext/calendar/dow.c +++ b/ext/calendar/dow.c @@ -64,12 +64,3 @@ const char * const DayNameLong[7] = "Friday", "Saturday" }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/calendar/easter.c b/ext/calendar/easter.c index c33fdda2da..2b9a2562e1 100644 --- a/ext/calendar/easter.c +++ b/ext/calendar/easter.c @@ -132,10 +132,3 @@ PHP_FUNCTION(easter_days) _cal_easter(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/calendar/french.c b/ext/calendar/french.c index 3d52efec8a..0707e27ed8 100644 --- a/ext/calendar/french.c +++ b/ext/calendar/french.c @@ -148,13 +148,3 @@ const char * const FrenchMonthName[14] = "Fructidor", "Extra" }; - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/calendar/jewish.c b/ext/calendar/jewish.c index 399fcf9100..11318bd5bc 100644 --- a/ext/calendar/jewish.c +++ b/ext/calendar/jewish.c @@ -793,12 +793,3 @@ zend_long JewishToSdn( } return (sdn + JEWISH_SDN_OFFSET); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/calendar/julian.c b/ext/calendar/julian.c index 6ab0854c3b..ac580aa08e 100644 --- a/ext/calendar/julian.c +++ b/ext/calendar/julian.c @@ -252,12 +252,3 @@ zend_long JulianToSdn( + inputDay - JULIAN_SDN_OFFSET); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/com_dotnet/com_com.c b/ext/com_dotnet/com_com.c index 995fe035ec..936896966f 100644 --- a/ext/com_dotnet/com_com.c +++ b/ext/com_dotnet/com_com.c @@ -847,14 +847,3 @@ PHP_FUNCTION(com_load_typelib) } } /* }}} */ - - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/com_dotnet/com_extension.c b/ext/com_dotnet/com_extension.c index 812b497340..e4545ec948 100644 --- a/ext/com_dotnet/com_extension.c +++ b/ext/com_dotnet/com_extension.c @@ -472,12 +472,3 @@ PHP_MINFO_FUNCTION(com_dotnet) DISPLAY_INI_ENTRIES(); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/com_dotnet/com_persist.c b/ext/com_dotnet/com_persist.c index 5b36c5e218..89c100b0fa 100644 --- a/ext/com_dotnet/com_persist.c +++ b/ext/com_dotnet/com_persist.c @@ -765,12 +765,3 @@ int php_com_persist_minit(INIT_FUNC_ARGS) return SUCCESS; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/com_dotnet/php_com_dotnet.h b/ext/com_dotnet/php_com_dotnet.h index fd81e3d6d5..50894158f5 100644 --- a/ext/com_dotnet/php_com_dotnet.h +++ b/ext/com_dotnet/php_com_dotnet.h @@ -55,12 +55,3 @@ extern ZEND_DECLARE_MODULE_GLOBALS(com_dotnet); #define COMG(v) ZEND_MODULE_GLOBALS_ACCESSOR(com_dotnet, v) #endif /* PHP_COM_DOTNET_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/com_dotnet/tests/27974.phpt b/ext/com_dotnet/tests/27974.phpt index bdce5cbb74..960a630304 100644 --- a/ext/com_dotnet/tests/27974.phpt +++ b/ext/com_dotnet/tests/27974.phpt @@ -1,7 +1,7 @@ --TEST-- COM: mapping a safearray --SKIPIF-- - --FILE-- --FILE-- --FILE-- diff --git a/ext/com_dotnet/tests/bug73679.phpt b/ext/com_dotnet/tests/bug73679.phpt index b5b884553f..b21f9db10d 100644 --- a/ext/com_dotnet/tests/bug73679.phpt +++ b/ext/com_dotnet/tests/bug73679.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #73679 DOTNET read access violation using invalid codepage --SKIPIF-- - --FILE-- --FILE-- diff --git a/ext/com_dotnet/tests/variants_x64.phpt b/ext/com_dotnet/tests/variants_x64.phpt index 8816fc6a2b..e9e7c23b97 100644 --- a/ext/com_dotnet/tests/variants_x64.phpt +++ b/ext/com_dotnet/tests/variants_x64.phpt @@ -1,7 +1,7 @@ --TEST-- COM: General variant tests --SKIPIF-- -pdict, describe_dict_fn, (void *)return_value); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/enchant/php_enchant.h b/ext/enchant/php_enchant.h index 16d2fee554..1152a96f47 100644 --- a/ext/enchant/php_enchant.h +++ b/ext/enchant/php_enchant.h @@ -68,12 +68,3 @@ PHP_FUNCTION(enchant_dict_quick_check); #endif #endif /* PHP_ENCHANT_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/exif/exif.c b/ext/exif/exif.c index 8d221ccc35..e721834fbb 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -4704,12 +4704,3 @@ PHP_FUNCTION(exif_imagetype) /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 tw=78 fdm=marker - * vim<600: sw=4 ts=4 tw=78 - */ diff --git a/ext/ext_skel.php b/ext/ext_skel.php index 77dae797ea..a03f40a5d8 100755 --- a/ext/ext_skel.php +++ b/ext/ext_skel.php @@ -42,7 +42,7 @@ function print_help() { printf(' --dir Path to the directory for where extension should be%s', PHP_EOL); printf(' created. Defaults to the directory of where this script%s', PHP_EOL); printf(' lives%s', PHP_EOL); - printf(' --std If passed, the standard header and vim rules footer used%s', PHP_EOL); + printf(' --std If passed, the standard header used%s', PHP_EOL); printf(' in extensions that is included in the core, will be used%s', PHP_EOL); printf(' --onlyunix Only generate configure scripts for Unix%s', PHP_EOL); printf(' --onlywindows Only generate configure scripts for Windows%s', PHP_EOL); @@ -179,7 +179,7 @@ function process_source_tags($file, $short_name) { $source = str_replace('%EXTNAMECAPS%', strtoupper($options['ext']), $source); if (strpos($short_name, '.c') !== false || strpos($short_name, '.h') !== false) { - static $header, $footer; + static $header; if (!$header) { if ($options['std']) { @@ -206,27 +206,16 @@ function process_source_tags($file, $short_name) { +----------------------------------------------------------------------+ */ HEADER; - $footer = <<<'FOOTER' - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ -FOOTER; } else { if ($options['author']) { $header = sprintf('/* %s extension for PHP (c) %d %s */', $options['ext'], date('Y'), $options['author']); } else { $header = sprintf('/* %s extension for PHP */', $options['ext']); } - - $footer = ''; } } - $source = str_replace(['%HEADER%', '%FOOTER%'], [$header, $footer], $source); + $source = str_replace('%HEADER%', $header, $source); } if (!file_put_contents($file, $source)) { diff --git a/ext/ffi/ffi.c b/ext/ffi/ffi.c index 4c2689bafc..1a8f866520 100644 --- a/ext/ffi/ffi.c +++ b/ext/ffi/ffi.c @@ -6702,12 +6702,3 @@ void zend_ffi_val_character(zend_ffi_val *val, const char *str, size_t str_len) } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/ffi/ffi.g b/ext/ffi/ffi.g index ae6ea0eb88..80b41fddc3 100644 --- a/ext/ffi/ffi.g +++ b/ext/ffi/ffi.g @@ -857,12 +857,3 @@ static void yy_error(const char *msg) { static void yy_error_sym(const char *msg, int sym) { zend_ffi_parser_error("%s '%s' at line %d", msg, sym_name[sym], yy_line); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/ffi/ffi_parser.c b/ext/ffi/ffi_parser.c index 337ce3360b..1606bef16f 100644 --- a/ext/ffi/ffi_parser.c +++ b/ext/ffi/ffi_parser.c @@ -5052,12 +5052,3 @@ static void yy_error(const char *msg) { static void yy_error_sym(const char *msg, int sym) { zend_ffi_parser_error("%s '%s' at line %d", msg, sym_name[sym], yy_line); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/ffi/php_ffi.h b/ext/ffi/php_ffi.h index 3c36e7258d..35b5127875 100644 --- a/ext/ffi/php_ffi.h +++ b/ext/ffi/php_ffi.h @@ -275,13 +275,3 @@ void zend_ffi_val_string(zend_ffi_val *val, const char *str, size_t str_len); void zend_ffi_val_character(zend_ffi_val *val, const char *str, size_t str_len); #endif /* PHP_FFI_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/fileinfo/fileinfo.c b/ext/fileinfo/fileinfo.c index 24257359d0..8bb76b5657 100644 --- a/ext/fileinfo/fileinfo.c +++ b/ext/fileinfo/fileinfo.c @@ -618,13 +618,3 @@ PHP_FUNCTION(mime_content_type) _php_finfo_get_type(INTERNAL_FUNCTION_PARAM_PASSTHRU, -1, 1); } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/fileinfo/php_fileinfo.h b/ext/fileinfo/php_fileinfo.h index 9214e57f82..266ecc7596 100644 --- a/ext/fileinfo/php_fileinfo.h +++ b/ext/fileinfo/php_fileinfo.h @@ -50,13 +50,3 @@ PHP_FUNCTION(mime_content_type); #endif #endif /* PHP_FILEINFO_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/filter/callback_filter.c b/ext/filter/callback_filter.c index cf3cdc8c89..00a0b19115 100644 --- a/ext/filter/callback_filter.c +++ b/ext/filter/callback_filter.c @@ -44,12 +44,3 @@ void php_filter_callback(PHP_INPUT_FILTER_PARAM_DECL) zval_ptr_dtor(&args[0]); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/filter/filter.c b/ext/filter/filter.c index d185439c42..06467417db 100644 --- a/ext/filter/filter.c +++ b/ext/filter/filter.c @@ -896,12 +896,3 @@ PHP_FUNCTION(filter_id) RETURN_FALSE; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/filter/filter_private.h b/ext/filter/filter_private.h index fd3af7b5c3..a604908707 100644 --- a/ext/filter/filter_private.h +++ b/ext/filter/filter_private.h @@ -122,12 +122,3 @@ } #endif /* FILTER_PRIVATE_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/filter/logical_filters.c b/ext/filter/logical_filters.c index 7b97713d5b..f2ac4d8570 100644 --- a/ext/filter/logical_filters.c +++ b/ext/filter/logical_filters.c @@ -950,12 +950,3 @@ void php_filter_validate_mac(PHP_INPUT_FILTER_PARAM_DECL) /* {{{ */ } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/filter/php_filter.h b/ext/filter/php_filter.h index 673c93b4d2..48c08882d3 100644 --- a/ext/filter/php_filter.h +++ b/ext/filter/php_filter.h @@ -96,11 +96,3 @@ void php_filter_add_slashes(PHP_INPUT_FILTER_PARAM_DECL); void php_filter_callback(PHP_INPUT_FILTER_PARAM_DECL); #endif /* FILTER_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/filter/sanitizing_filters.c b/ext/filter/sanitizing_filters.c index 89a12b75d5..815ba9a94a 100644 --- a/ext/filter/sanitizing_filters.c +++ b/ext/filter/sanitizing_filters.c @@ -380,12 +380,3 @@ void php_filter_add_slashes(PHP_INPUT_FILTER_PARAM_DECL) ZVAL_STR(value, buf); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/ftp/ftp.c b/ext/ftp/ftp.c index 3921c674c9..2454a4e303 100644 --- a/ext/ftp/ftp.c +++ b/ext/ftp/ftp.c @@ -2311,12 +2311,3 @@ bail: /* }}} */ #endif /* HAVE_FTP */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c index da72b9da3f..e798213e7f 100644 --- a/ext/ftp/php_ftp.c +++ b/ext/ftp/php_ftp.c @@ -1613,11 +1613,3 @@ PHP_FUNCTION(ftp_get_option) /* }}} */ #endif /* HAVE_FTP */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/gd/gd.c b/ext/gd/gd.c index b18cb1733e..aa70be995f 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -5092,12 +5092,3 @@ PHP_FUNCTION(imageresolution) } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/gd/gd_ctx.c b/ext/gd/gd_ctx.c index a2375dc202..6c0b97f8d1 100644 --- a/ext/gd/gd_ctx.c +++ b/ext/gd/gd_ctx.c @@ -220,12 +220,3 @@ static void _php_image_output_ctx(INTERNAL_FUNCTION_PARAMETERS, int image_type, RETURN_TRUE; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/gd/libgd/gd_xbm.c b/ext/gd/libgd/gd_xbm.c index 115f1c4d46..a37d833d3b 100644 --- a/ext/gd/libgd/gd_xbm.c +++ b/ext/gd/libgd/gd_xbm.c @@ -231,12 +231,3 @@ void gdImageXbmCtx(gdImagePtr image, char* file_name, int fg, gdIOCtx * out) gdCtxPrintf(out, "};\n"); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/gettext/gettext.c b/ext/gettext/gettext.c index f0245cb8ef..003787f5c0 100644 --- a/ext/gettext/gettext.c +++ b/ext/gettext/gettext.c @@ -389,12 +389,3 @@ PHP_NAMED_FUNCTION(zif_bind_textdomain_codeset) #endif /* HAVE_LIBINTL */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c index e948de1bc5..0b55945f41 100644 --- a/ext/gmp/gmp.c +++ b/ext/gmp/gmp.c @@ -2206,12 +2206,3 @@ ZEND_FUNCTION(gmp_scan1) FREE_GMP_TEMP(temp_a); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/gmp/php_gmp.h b/ext/gmp/php_gmp.h index c484a7d1cd..6994814b06 100644 --- a/ext/gmp/php_gmp.h +++ b/ext/gmp/php_gmp.h @@ -95,11 +95,3 @@ ZEND_TSRMLS_CACHE_EXTERN() #endif #endif /* PHP_GMP_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/hash/hash.c b/ext/hash/hash.c index 099242fcc5..1c1d0b4ece 100644 --- a/ext/hash/hash.c +++ b/ext/hash/hash.c @@ -1490,12 +1490,3 @@ zend_module_entry hash_module_entry = { #ifdef COMPILE_DL_HASH ZEND_GET_MODULE(hash) #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/hash/hash_adler32.c b/ext/hash/hash_adler32.c index 74b93cc632..12bc44e446 100644 --- a/ext/hash/hash_adler32.c +++ b/ext/hash/hash_adler32.c @@ -70,12 +70,3 @@ const php_hash_ops php_hash_adler32_ops = { sizeof(PHP_ADLER32_CTX), 0 }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_crc32.c b/ext/hash/hash_crc32.c index 6b38e92f4c..4f095e4b71 100644 --- a/ext/hash/hash_crc32.c +++ b/ext/hash/hash_crc32.c @@ -91,12 +91,3 @@ const php_hash_ops php_hash_crc32b_ops = { sizeof(PHP_CRC32_CTX), 0 }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_fnv.c b/ext/hash/hash_fnv.c index e5236a95ed..0ebe867b49 100644 --- a/ext/hash/hash_fnv.c +++ b/ext/hash/hash_fnv.c @@ -223,12 +223,3 @@ fnv_64_buf(void *buf, size_t len, uint64_t hval, int alternate) /* return our new hash value */ return hval; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/hash/hash_gost.c b/ext/hash/hash_gost.c index 6a23e54e80..f51b310b70 100644 --- a/ext/hash/hash_gost.c +++ b/ext/hash/hash_gost.c @@ -327,12 +327,3 @@ const php_hash_ops php_hash_gost_crypto_ops = { sizeof(PHP_GOST_CTX), 1 }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_haval.c b/ext/hash/hash_haval.c index 54a75b2c68..af2991e667 100644 --- a/ext/hash/hash_haval.c +++ b/ext/hash/hash_haval.c @@ -538,12 +538,3 @@ PHP_HASH_API void PHP_HAVAL256Final(unsigned char *digest, PHP_HAVAL_CTX * conte ZEND_SECURE_ZERO((unsigned char*) context, sizeof(*context)); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_joaat.c b/ext/hash/hash_joaat.c index 02162c5c13..fe04ed9cf2 100644 --- a/ext/hash/hash_joaat.c +++ b/ext/hash/hash_joaat.c @@ -87,12 +87,3 @@ joaat_buf(void *buf, size_t len, uint32_t hval) return hval; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/hash/hash_md.c b/ext/hash/hash_md.c index 69036cda2e..497c7d9d8d 100644 --- a/ext/hash/hash_md.c +++ b/ext/hash/hash_md.c @@ -691,12 +691,3 @@ PHP_HASH_API void PHP_MD2Final(unsigned char output[16], PHP_MD2_CTX *context) memcpy(output, context->state, 16); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_ripemd.c b/ext/hash/hash_ripemd.c index ea4c81968b..083e6a9955 100644 --- a/ext/hash/hash_ripemd.c +++ b/ext/hash/hash_ripemd.c @@ -766,12 +766,3 @@ PHP_HASH_API void PHP_RIPEMD320Final(unsigned char digest[40], PHP_RIPEMD320_CTX ZEND_SECURE_ZERO((unsigned char*) context, sizeof(*context)); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_sha.c b/ext/hash/hash_sha.c index c88fc45f31..4e0e1c1797 100644 --- a/ext/hash/hash_sha.c +++ b/ext/hash/hash_sha.c @@ -1111,12 +1111,3 @@ const php_hash_ops php_hash_sha512_224_ops = { sizeof(PHP_SHA512_CTX), 1 }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_sha3.c b/ext/hash/hash_sha3.c index 12ff4156ad..8d0a1e7f8b 100644 --- a/ext/hash/hash_sha3.c +++ b/ext/hash/hash_sha3.c @@ -286,12 +286,3 @@ DECLARE_SHA3_OPS(384); DECLARE_SHA3_OPS(512); #undef DECLARE_SHA3_OPS - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_snefru.c b/ext/hash/hash_snefru.c index acc0ef64bc..0e6b703f2a 100644 --- a/ext/hash/hash_snefru.c +++ b/ext/hash/hash_snefru.c @@ -201,12 +201,3 @@ const php_hash_ops php_hash_snefru_ops = { sizeof(PHP_SNEFRU_CTX), 1 }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_tiger.c b/ext/hash/hash_tiger.c index fdae1b2d64..4d126f0d8f 100644 --- a/ext/hash/hash_tiger.c +++ b/ext/hash/hash_tiger.c @@ -259,12 +259,3 @@ PHP_HASH_TIGER_OPS(3, 192); PHP_HASH_TIGER_OPS(4, 128); PHP_HASH_TIGER_OPS(4, 160); PHP_HASH_TIGER_OPS(4, 192); - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/hash_whirlpool.c b/ext/hash/hash_whirlpool.c index cacff97697..3bd9bd13da 100644 --- a/ext/hash/hash_whirlpool.c +++ b/ext/hash/hash_whirlpool.c @@ -441,12 +441,3 @@ const php_hash_ops php_hash_whirlpool_ops = { sizeof(PHP_WHIRLPOOL_CTX), 1 }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash.h b/ext/hash/php_hash.h index bb21721a9d..8f23c1920d 100644 --- a/ext/hash/php_hash.h +++ b/ext/hash/php_hash.h @@ -159,13 +159,3 @@ static inline void php_hash_bin2hex(char *out, const unsigned char *in, size_t i } #endif /* PHP_HASH_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_adler32.h b/ext/hash/php_hash_adler32.h index b523f021e5..63f32ab536 100644 --- a/ext/hash/php_hash_adler32.h +++ b/ext/hash/php_hash_adler32.h @@ -31,12 +31,3 @@ PHP_HASH_API void PHP_ADLER32Final(unsigned char digest[4], PHP_ADLER32_CTX *con PHP_HASH_API int PHP_ADLER32Copy(const php_hash_ops *ops, PHP_ADLER32_CTX *orig_context, PHP_ADLER32_CTX *copy_context); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_crc32.h b/ext/hash/php_hash_crc32.h index b2ec34add6..5b187dc51f 100644 --- a/ext/hash/php_hash_crc32.h +++ b/ext/hash/php_hash_crc32.h @@ -32,12 +32,3 @@ PHP_HASH_API void PHP_CRC32Final(unsigned char digest[4], PHP_CRC32_CTX *context PHP_HASH_API int PHP_CRC32Copy(const php_hash_ops *ops, PHP_CRC32_CTX *orig_context, PHP_CRC32_CTX *copy_context); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_crc32_tables.h b/ext/hash/php_hash_crc32_tables.h index 0e16f947bd..9d1e5b8376 100644 --- a/ext/hash/php_hash_crc32_tables.h +++ b/ext/hash/php_hash_crc32_tables.h @@ -136,12 +136,3 @@ static const uint32_t crc32b_table[] = { 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d, }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_fnv.h b/ext/hash/php_hash_fnv.h index a164fad0b4..f00a469423 100644 --- a/ext/hash/php_hash_fnv.h +++ b/ext/hash/php_hash_fnv.h @@ -66,12 +66,3 @@ static uint32_t fnv_32_buf(void *buf, size_t len, uint32_t hval, int alternate); static uint64_t fnv_64_buf(void *buf, size_t len, uint64_t hval, int alternate); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_gost.h b/ext/hash/php_hash_gost.h index ccb2d91558..3837eeb263 100644 --- a/ext/hash/php_hash_gost.h +++ b/ext/hash/php_hash_gost.h @@ -35,12 +35,3 @@ PHP_HASH_API void PHP_GOSTUpdate(PHP_GOST_CTX *, const unsigned char *, size_t); PHP_HASH_API void PHP_GOSTFinal(unsigned char[64], PHP_GOST_CTX *); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_joaat.h b/ext/hash/php_hash_joaat.h index 7d669f0ba5..b9e7e7a7ee 100644 --- a/ext/hash/php_hash_joaat.h +++ b/ext/hash/php_hash_joaat.h @@ -30,12 +30,3 @@ PHP_HASH_API void PHP_JOAATFinal(unsigned char digest[16], PHP_JOAAT_CTX * conte static uint32_t joaat_buf(void *buf, size_t len, uint32_t hval); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_sha3.h b/ext/hash/php_hash_sha3.h index 2621accbd9..0608f4005e 100644 --- a/ext/hash/php_hash_sha3.h +++ b/ext/hash/php_hash_sha3.h @@ -52,11 +52,3 @@ PHP_HASH_API void PHP_SHA3512Update(PHP_SHA3_512_CTX*, const unsigned char*, siz PHP_HASH_API void PHP_SAH3512Final(unsigned char[32], PHP_SHA3_512_CTX*); #endif -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_snefru.h b/ext/hash/php_hash_snefru.h index 8e205a95b6..2040fbfc94 100644 --- a/ext/hash/php_hash_snefru.h +++ b/ext/hash/php_hash_snefru.h @@ -38,12 +38,3 @@ PHP_HASH_API void PHP_SNEFRUUpdate(PHP_SNEFRU_CTX *, const unsigned char *, size PHP_HASH_API void PHP_SNEFRUFinal(unsigned char[32], PHP_SNEFRU_CTX *); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_snefru_tables.h b/ext/hash/php_hash_snefru_tables.h index 9815f2a316..20d385443d 100644 --- a/ext/hash/php_hash_snefru_tables.h +++ b/ext/hash/php_hash_snefru_tables.h @@ -929,12 +929,3 @@ static const uint32_t tables[16][256]= { /* 255*/ 0x4d87253cL /* End of S Box 15 */ } }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_tiger.h b/ext/hash/php_hash_tiger.h index cca64b1e85..b80e4e3254 100644 --- a/ext/hash/php_hash_tiger.h +++ b/ext/hash/php_hash_tiger.h @@ -36,12 +36,3 @@ PHP_HASH_API void PHP_TIGER160Final(unsigned char digest[20], PHP_TIGER_CTX *con PHP_HASH_API void PHP_TIGER192Final(unsigned char digest[24], PHP_TIGER_CTX *context); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_tiger_tables.h b/ext/hash/php_hash_tiger_tables.h index fd81b3ce4f..3dbdc0a4c6 100644 --- a/ext/hash/php_hash_tiger_tables.h +++ b/ext/hash/php_hash_tiger_tables.h @@ -536,12 +536,3 @@ static const uint64_t table[4*256] = { L64(0xCD56D9430EA8280E) /* 1020 */, L64(0xC12591D7535F5065) /* 1021 */, L64(0xC83223F1720AEF96) /* 1022 */, L64(0xC3A0396F7363A51F) /* 1023 */, }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_whirlpool.h b/ext/hash/php_hash_whirlpool.h index 6c65c3c5bd..3a2e98cff2 100644 --- a/ext/hash/php_hash_whirlpool.h +++ b/ext/hash/php_hash_whirlpool.h @@ -35,12 +35,3 @@ PHP_HASH_API void PHP_WHIRLPOOLUpdate(PHP_WHIRLPOOL_CTX *, const unsigned char * PHP_HASH_API void PHP_WHIRLPOOLFinal(unsigned char[64], PHP_WHIRLPOOL_CTX *); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/hash/php_hash_whirlpool_tables.h b/ext/hash/php_hash_whirlpool_tables.h index 04b61068a8..2127ccca59 100644 --- a/ext/hash/php_hash_whirlpool_tables.h +++ b/ext/hash/php_hash_whirlpool_tables.h @@ -572,12 +572,3 @@ static const uint64_t C7[256] = { }; #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c index f3f8ed2aa7..0e85a5c3b3 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -2933,12 +2933,3 @@ static php_iconv_err_t php_iconv_stream_filter_unregister_factory(void) /* }}} */ /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/iconv/php_iconv.h b/ext/iconv/php_iconv.h index 048c5d9b13..980d84c945 100644 --- a/ext/iconv/php_iconv.h +++ b/ext/iconv/php_iconv.h @@ -116,10 +116,3 @@ PHP_ICONV_API php_iconv_err_t php_iconv_string(const char * in_p, size_t in_len, #define phpext_iconv_ptr iconv_module_ptr #endif /* PHP_ICONV_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/iconv/tests/translit-utf8.phpt b/ext/iconv/tests/translit-utf8.phpt index 5098798a0d..68b1982779 100644 --- a/ext/iconv/tests/translit-utf8.phpt +++ b/ext/iconv/tests/translit-utf8.phpt @@ -8,7 +8,7 @@ include('skipif.inc'); --INI-- error_reporting=2047 --FILE-- -mf_data); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/msgformat/msgformat_helpers.cpp b/ext/intl/msgformat/msgformat_helpers.cpp index c98fb3ffdd..dcc74283b2 100644 --- a/ext/intl/msgformat/msgformat_helpers.cpp +++ b/ext/intl/msgformat/msgformat_helpers.cpp @@ -675,12 +675,3 @@ U_CFUNC void umsg_parse_helper(UMessageFormat *fmt, int *count, zval **args, UCh } delete[] fargs; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/msgformat/msgformat_parse.c b/ext/intl/msgformat/msgformat_parse.c index 8562a76e92..c517288bff 100644 --- a/ext/intl/msgformat/msgformat_parse.c +++ b/ext/intl/msgformat/msgformat_parse.c @@ -152,12 +152,3 @@ PHP_FUNCTION( msgfmt_parse_message ) msgformat_data_free(&mfo->mf_data); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/normalizer/normalizer.c b/ext/intl/normalizer/normalizer.c index 3c49fe584b..e05c45875b 100644 --- a/ext/intl/normalizer/normalizer.c +++ b/ext/intl/normalizer/normalizer.c @@ -61,12 +61,3 @@ void normalizer_register_constants( INIT_FUNC_ARGS ) #undef NORMALIZER_EXPOSE_CONST } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/normalizer/normalizer_class.c b/ext/intl/normalizer/normalizer_class.c index 5168b929ab..4e46b2e279 100644 --- a/ext/intl/normalizer/normalizer_class.c +++ b/ext/intl/normalizer/normalizer_class.c @@ -78,12 +78,3 @@ void normalizer_register_Normalizer_class( void ) } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/normalizer/normalizer_normalize.c b/ext/intl/normalizer/normalizer_normalize.c index 5a738b344b..f8336d0101 100644 --- a/ext/intl/normalizer/normalizer_normalize.c +++ b/ext/intl/normalizer/normalizer_normalize.c @@ -388,12 +388,3 @@ PHP_FUNCTION( normalizer_get_raw_decomposition ) } #endif /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/php_intl.c b/ext/intl/php_intl.c index b7a0afcab0..b244a29842 100644 --- a/ext/intl/php_intl.c +++ b/ext/intl/php_intl.c @@ -1057,12 +1057,3 @@ PHP_MINFO_FUNCTION( intl ) DISPLAY_INI_ENTRIES() ; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/php_intl.h b/ext/intl/php_intl.h index 6d8f46adec..6b910d76c8 100644 --- a/ext/intl/php_intl.h +++ b/ext/intl/php_intl.h @@ -74,12 +74,3 @@ const char *intl_locale_get_default( void ); #define PHP_INTL_VERSION PHP_VERSION #endif /* PHP_INTL_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/resourcebundle/resourcebundle.c b/ext/intl/resourcebundle/resourcebundle.c index fc6ecb946c..5c3bc1742e 100644 --- a/ext/intl/resourcebundle/resourcebundle.c +++ b/ext/intl/resourcebundle/resourcebundle.c @@ -81,12 +81,3 @@ void resourcebundle_extract_value( zval *return_value, ResourceBundle_object *so } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/resourcebundle/resourcebundle_class.c b/ext/intl/resourcebundle/resourcebundle_class.c index b71f7b98eb..2feb6edb13 100644 --- a/ext/intl/resourcebundle/resourcebundle_class.c +++ b/ext/intl/resourcebundle/resourcebundle_class.c @@ -458,12 +458,3 @@ void resourcebundle_register_class( void ) zend_class_implements(ResourceBundle_ce_ptr, 1, zend_ce_traversable); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/resourcebundle/resourcebundle_iterator.c b/ext/intl/resourcebundle/resourcebundle_iterator.c index 07cfc7bc0d..b51f43f22b 100644 --- a/ext/intl/resourcebundle/resourcebundle_iterator.c +++ b/ext/intl/resourcebundle/resourcebundle_iterator.c @@ -175,12 +175,3 @@ zend_object_iterator *resourcebundle_get_iterator( zend_class_entry *ce, zval *o return (zend_object_iterator *) iterator; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/spoofchecker/spoofchecker.c b/ext/intl/spoofchecker/spoofchecker.c index 221b69ee5b..607576a2bf 100644 --- a/ext/intl/spoofchecker/spoofchecker.c +++ b/ext/intl/spoofchecker/spoofchecker.c @@ -57,12 +57,3 @@ void spoofchecker_register_constants(INIT_FUNC_ARGS) #undef SPOOFCHECKER_EXPOSE_CLASS_CONST } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/spoofchecker/spoofchecker_class.c b/ext/intl/spoofchecker/spoofchecker_class.c index 03d4caaad5..d8bca44dba 100644 --- a/ext/intl/spoofchecker/spoofchecker_class.c +++ b/ext/intl/spoofchecker/spoofchecker_class.c @@ -183,12 +183,3 @@ void spoofchecker_object_destroy(Spoofchecker_object* co) intl_error_reset(SPOOFCHECKER_ERROR_P(co)); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/spoofchecker/spoofchecker_create.c b/ext/intl/spoofchecker/spoofchecker_create.c index f667f731f0..999b6af147 100644 --- a/ext/intl/spoofchecker/spoofchecker_create.c +++ b/ext/intl/spoofchecker/spoofchecker_create.c @@ -65,12 +65,3 @@ PHP_METHOD(Spoofchecker, __construct) zend_restore_error_handling(&error_handling); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/spoofchecker/spoofchecker_main.c b/ext/intl/spoofchecker/spoofchecker_main.c index d41a9ae9cc..072ed24b7e 100644 --- a/ext/intl/spoofchecker/spoofchecker_main.c +++ b/ext/intl/spoofchecker/spoofchecker_main.c @@ -163,12 +163,3 @@ PHP_METHOD(Spoofchecker, setRestrictionLevel) } /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/transliterator/transliterator.c b/ext/intl/transliterator/transliterator.c index e7f2ffd72c..a80de4bf9a 100644 --- a/ext/intl/transliterator/transliterator.c +++ b/ext/intl/transliterator/transliterator.c @@ -48,12 +48,3 @@ void transliterator_register_constants( INIT_FUNC_ARGS ) #undef NORMALIZER_EXPOSE_CONST } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/transliterator/transliterator_class.c b/ext/intl/transliterator/transliterator_class.c index 0f5d8cbf21..a662dcee7d 100644 --- a/ext/intl/transliterator/transliterator_class.c +++ b/ext/intl/transliterator/transliterator_class.c @@ -359,12 +359,3 @@ void transliterator_register_Transliterator_class( void ) } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/intl/transliterator/transliterator_methods.c b/ext/intl/transliterator/transliterator_methods.c index 8bf7f9e7f2..25d0b9a4da 100644 --- a/ext/intl/transliterator/transliterator_methods.c +++ b/ext/intl/transliterator/transliterator_methods.c @@ -525,13 +525,3 @@ PHP_FUNCTION( transliterator_get_error_message ) RETURN_STR( message ); } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/json/json.c b/ext/json/json.c index 9d8a72ff64..b9b506e00b 100644 --- a/ext/json/json.c +++ b/ext/json/json.c @@ -385,12 +385,3 @@ static PHP_FUNCTION(json_last_error_msg) RETURN_STRING(php_json_get_error_msg(JSON_G(error_code))); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/json/json_encoder.c b/ext/json/json_encoder.c index 93cfb5aeb1..a8a5c64c9e 100644 --- a/ext/json/json_encoder.c +++ b/ext/json/json_encoder.c @@ -590,12 +590,3 @@ again: return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/json/php_json.h b/ext/json/php_json.h index c947b9bd50..50ef76107b 100644 --- a/ext/json/php_json.h +++ b/ext/json/php_json.h @@ -106,12 +106,3 @@ static inline int php_json_decode(zval *return_value, char *str, int str_len, ze } #endif /* PHP_JSON_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c index 197f6b019d..56ff52da06 100644 --- a/ext/ldap/ldap.c +++ b/ext/ldap/ldap.c @@ -4888,12 +4888,3 @@ zend_module_entry ldap_module_entry = { /* {{{ */ STANDARD_MODULE_PROPERTIES_EX }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/libxml/libxml.c b/ext/libxml/libxml.c index 2d71ffdb7b..b8603fdf38 100644 --- a/ext/libxml/libxml.c +++ b/ext/libxml/libxml.c @@ -1346,12 +1346,3 @@ PHP_LIBXML_API BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID l #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/libxml/php_libxml.h b/ext/libxml/php_libxml.h index 12af448137..cf936e95de 100644 --- a/ext/libxml/php_libxml.h +++ b/ext/libxml/php_libxml.h @@ -127,10 +127,3 @@ ZEND_TSRMLS_CACHE_EXTERN() #define phpext_libxml_ptr libxml_module_ptr #endif /* PHP_LIBXML_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4 index 3d67883b09..b6d7f529a6 100644 --- a/ext/mbstring/config.m4 +++ b/ext/mbstring/config.m4 @@ -327,5 +327,3 @@ if test "$PHP_MBSTRING" != "no"; then PHP_MBSTRING_SETUP_LIBMBFL PHP_MBSTRING_EXTENSION fi - -# vim600: sts=2 sw=2 et diff --git a/ext/mbstring/libmbfl/DISCLAIMER b/ext/mbstring/libmbfl/DISCLAIMER index 21b7a91d55..8cc750769a 100644 --- a/ext/mbstring/libmbfl/DISCLAIMER +++ b/ext/mbstring/libmbfl/DISCLAIMER @@ -1,6 +1,3 @@ -# charset=UTF-8 -# vim600: encoding=UTF-8 - "streamable kanji code filter and converter" Copyright (c) 1998,1999,2000,2001 HappySize, Inc. All rights reserved. diff --git a/ext/mbstring/libmbfl/filters/html_entities.c b/ext/mbstring/libmbfl/filters/html_entities.c index 919a5bb746..a9152c090c 100644 --- a/ext/mbstring/libmbfl/filters/html_entities.c +++ b/ext/mbstring/libmbfl/filters/html_entities.c @@ -289,10 +289,3 @@ const mbfl_html_entity_entry mbfl_html_entity_list[] = { {"diams", 9830}, {NULL, -1} /* mark end of table */ }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/mbstring/libmbfl/filters/mbfilter_armscii8.h b/ext/mbstring/libmbfl/filters/mbfilter_armscii8.h index 1de95c615b..0b14934995 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_armscii8.h +++ b/ext/mbstring/libmbfl/filters/mbfilter_armscii8.h @@ -36,10 +36,3 @@ int mbfl_filt_conv_armscii8_wchar(int c, mbfl_convert_filter *filter); int mbfl_filt_conv_wchar_armscii8(int c, mbfl_convert_filter *filter); #endif /* MBFL_MBFILTER_ARMSCII8_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/mbstring/libmbfl/filters/mbfilter_hz.c b/ext/mbstring/libmbfl/filters/mbfilter_hz.c index 8a39b75e17..570fcb4fff 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_hz.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_hz.c @@ -276,11 +276,3 @@ static int mbfl_filt_ident_hz(int c, mbfl_identify_filter *filter) return c; } - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/mbstring/libmbfl/filters/mbfilter_koi8r.h b/ext/mbstring/libmbfl/filters/mbfilter_koi8r.h index c0b198ccad..6073d140ae 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_koi8r.h +++ b/ext/mbstring/libmbfl/filters/mbfilter_koi8r.h @@ -41,10 +41,3 @@ int mbfl_filt_conv_koi8r_wchar(int c, mbfl_convert_filter *filter); int mbfl_filt_conv_wchar_koi8r(int c, mbfl_convert_filter *filter); #endif /* MBFL_MBFILTER_KOI8R_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/mbstring/libmbfl/filters/mbfilter_koi8u.h b/ext/mbstring/libmbfl/filters/mbfilter_koi8u.h index fee7ebe2c0..16b95c1fc4 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_koi8u.h +++ b/ext/mbstring/libmbfl/filters/mbfilter_koi8u.h @@ -38,10 +38,3 @@ int mbfl_filt_conv_koi8u_wchar(int c, mbfl_convert_filter *filter); int mbfl_filt_conv_wchar_koi8u(int c, mbfl_convert_filter *filter); #endif /* MBFL_MBFILTER_KOI8U_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/mbstring/libmbfl/mbfl/mbfilter.c b/ext/mbstring/libmbfl/mbfl/mbfilter.c index 331ce4941c..1cb6d28e7b 100644 --- a/ext/mbstring/libmbfl/mbfl/mbfilter.c +++ b/ext/mbstring/libmbfl/mbfl/mbfilter.c @@ -2892,10 +2892,3 @@ mbfl_html_numeric_entity( return result; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/mbstring/libmbfl/mbfl/mbfilter.h b/ext/mbstring/libmbfl/mbfl/mbfilter.h index a6aed129fa..0966e2df44 100644 --- a/ext/mbstring/libmbfl/mbfl/mbfilter.h +++ b/ext/mbstring/libmbfl/mbfl/mbfilter.h @@ -1,7 +1,3 @@ -/* charset=UTF-8 - * vim: encoding=utf-8: - * */ - /* * "streamable kanji code filter and converter" * diff --git a/ext/mbstring/mb_gpc.c b/ext/mbstring/mb_gpc.c index 0c473ee9f6..2a6a9b23bb 100644 --- a/ext/mbstring/mb_gpc.c +++ b/ext/mbstring/mb_gpc.c @@ -386,12 +386,3 @@ SAPI_POST_HANDLER_FUNC(php_mb_post_handler) /* }}} */ #endif /* HAVE_MBSTRING */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/mbstring/mb_gpc.h b/ext/mbstring/mb_gpc.h index 5ce1e1e05b..2a75488e65 100644 --- a/ext/mbstring/mb_gpc.h +++ b/ext/mbstring/mb_gpc.h @@ -48,12 +48,3 @@ int _php_mb_enable_encoding_translation(int flag); const mbfl_encoding *_php_mb_encoding_handler_ex(const php_mb_encoding_handler_info_t *info, zval *arg, char *res); /* }}} */ #endif /* HAVE_MBSTRING */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index bfeb0fc439..b7f6809524 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -5196,12 +5196,3 @@ static void php_mb_gpc_set_input_encoding(const zend_encoding *encoding) /* {{{ /* }}} */ #endif /* HAVE_MBSTRING */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/mbstring/mbstring.h b/ext/mbstring/mbstring.h index 5f19182001..37965ec289 100644 --- a/ext/mbstring/mbstring.h +++ b/ext/mbstring/mbstring.h @@ -195,10 +195,3 @@ ZEND_TSRMLS_CACHE_EXTERN() #define phpext_mbstring_ptr mbstring_module_ptr #endif /* _MBSTRING_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/mbstring/php_mbregex.c b/ext/mbstring/php_mbregex.c index 254b0a02c6..148e96dcff 100644 --- a/ext/mbstring/php_mbregex.c +++ b/ext/mbstring/php_mbregex.c @@ -1670,12 +1670,3 @@ PHP_FUNCTION(mb_regex_set_options) /* }}} */ #endif /* HAVE_MBREGEX */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/mbstring/php_mbregex.h b/ext/mbstring/php_mbregex.h index ea848611ba..497458e603 100644 --- a/ext/mbstring/php_mbregex.h +++ b/ext/mbstring/php_mbregex.h @@ -95,12 +95,3 @@ PHP_FUNCTION(mb_regex_set_options); #endif /* HAVE_MBREGEX */ #endif /* _PHP_MBREGEX_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mbstring/php_unicode.c b/ext/mbstring/php_unicode.c index ac9e670855..69fdfc0706 100644 --- a/ext/mbstring/php_unicode.c +++ b/ext/mbstring/php_unicode.c @@ -449,12 +449,3 @@ MBSTRING_API char *php_unicode_convert_case( #endif /* HAVE_MBSTRING */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index e82434744d..02ec94f478 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -1315,12 +1315,3 @@ void php_mysqli_fetch_into_hash(INTERNAL_FUNCTION_PARAMETERS, int override_flags } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 9e2f8fa0e9..604b4b672d 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -2676,12 +2676,3 @@ PHP_FUNCTION(mysqli_warning_count) RETURN_LONG(mysql_warning_count(mysql->mysql)); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_driver.c b/ext/mysqli/mysqli_driver.c index 5cf2d0f5b2..5839c14827 100644 --- a/ext/mysqli/mysqli_driver.c +++ b/ext/mysqli/mysqli_driver.c @@ -153,13 +153,3 @@ const zend_function_entry mysqli_driver_methods[] = { PHP_FE_END }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_embedded.c b/ext/mysqli/mysqli_embedded.c index 4d0ff48ec1..efc9a55852 100644 --- a/ext/mysqli/mysqli_embedded.c +++ b/ext/mysqli/mysqli_embedded.c @@ -119,13 +119,3 @@ PHP_FUNCTION(mysqli_embedded_server_end) #endif } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_exception.c b/ext/mysqli/mysqli_exception.c index 8453db25ba..6ac5261e07 100644 --- a/ext/mysqli/mysqli_exception.c +++ b/ext/mysqli/mysqli_exception.c @@ -72,13 +72,3 @@ void php_mysqli_throw_sql_exception(char *sqlstate, int errorno, char *format, . zend_throw_exception_object(&sql_ex); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_fe.c b/ext/mysqli/mysqli_fe.c index e11983d931..68c79c88dc 100644 --- a/ext/mysqli/mysqli_fe.c +++ b/ext/mysqli/mysqli_fe.c @@ -658,12 +658,3 @@ const zend_function_entry mysqli_stmt_methods[] = { PHP_FE_END }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_nonapi.c b/ext/mysqli/mysqli_nonapi.c index 5ed56a1f67..a69fb63d6a 100644 --- a/ext/mysqli/mysqli_nonapi.c +++ b/ext/mysqli/mysqli_nonapi.c @@ -1206,13 +1206,3 @@ PHP_FUNCTION(mysqli_get_links_stats) add_assoc_long_ex(return_value, "cached_plinks", sizeof("cached_plinks") - 1, MyG(num_inactive_persistent)); } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_prop.c b/ext/mysqli/mysqli_prop.c index eb5b3ac7bd..25985927dc 100644 --- a/ext/mysqli/mysqli_prop.c +++ b/ext/mysqli/mysqli_prop.c @@ -466,12 +466,3 @@ const mysqli_property_entry mysqli_stmt_property_entries[] = { {"id", sizeof("id") - 1, stmt_id_read, NULL}, {NULL, 0, NULL, NULL} }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_report.c b/ext/mysqli/mysqli_report.c index 1b3ba19a9a..330e5a6f70 100644 --- a/ext/mysqli/mysqli_report.c +++ b/ext/mysqli/mysqli_report.c @@ -65,12 +65,3 @@ void php_mysqli_report_index(const char *query, unsigned int status) { php_mysqli_throw_sql_exception("00000", 0, "%s used in query/prepared statement %s", index, query); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_result_iterator.c b/ext/mysqli/mysqli_result_iterator.c index 45f85e1005..704c67f5c2 100644 --- a/ext/mysqli/mysqli_result_iterator.c +++ b/ext/mysqli/mysqli_result_iterator.c @@ -154,12 +154,3 @@ const zend_object_iterator_funcs php_mysqli_result_iterator_funcs = { NULL }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/mysqli_warning.c b/ext/mysqli/mysqli_warning.c index 0e8b214ca2..248d9a281f 100644 --- a/ext/mysqli/mysqli_warning.c +++ b/ext/mysqli/mysqli_warning.c @@ -323,13 +323,3 @@ const mysqli_property_entry mysqli_warning_property_entries[] = { {NULL, 0, NULL, NULL} }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/php_mysqli.h b/ext/mysqli/php_mysqli.h index 79bcf3d173..64a979d3fd 100644 --- a/ext/mysqli/php_mysqli.h +++ b/ext/mysqli/php_mysqli.h @@ -28,13 +28,3 @@ extern zend_module_entry mysqli_module_entry; #define PHP_MYSQLI_VERSION PHP_VERSION #endif /* PHP_MYSQLI.H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqli/php_mysqli_structs.h b/ext/mysqli/php_mysqli_structs.h index f0136c88bc..b309c21070 100644 --- a/ext/mysqli/php_mysqli_structs.h +++ b/ext/mysqli/php_mysqli_structs.h @@ -345,14 +345,3 @@ ZEND_TSRMLS_CACHE_EXTERN() ZEND_EXTERN_MODULE_GLOBALS(mysqli) #endif /* PHP_MYSQLI_STRUCTS.H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/config-win.h b/ext/mysqlnd/config-win.h index 3b5f95ed18..d93b3bf9f9 100644 --- a/ext/mysqlnd/config-win.h +++ b/ext/mysqlnd/config-win.h @@ -104,12 +104,3 @@ This file is public domain and comes with NO WARRANTY of any kind */ #endif /* _WIN64 */ #endif /* _MYSQLND_CONFIG_WIN_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysql_float_to_double.h b/ext/mysqlnd/mysql_float_to_double.h index 7ac77d9127..dca9a3fdaf 100644 --- a/ext/mysqlnd/mysql_float_to_double.h +++ b/ext/mysqlnd/mysql_float_to_double.h @@ -48,13 +48,4 @@ static inline double mysql_float_to_double(float fp4, int decimals) { return zend_strtod(num_buf, NULL); } -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ - #endif /* MYSQL_FLOAT_TO_DOUBLE_H */ diff --git a/ext/mysqlnd/mysqlnd.h b/ext/mysqlnd/mysqlnd.h index 021e7a1155..08d09db3ad 100644 --- a/ext/mysqlnd/mysqlnd.h +++ b/ext/mysqlnd/mysqlnd.h @@ -338,13 +338,3 @@ ZEND_TSRMLS_CACHE_EXTERN() PHPAPI void mysqlnd_minfo_print_hash(zval *values); #endif /* MYSQLND_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_alloc.c b/ext/mysqlnd/mysqlnd_alloc.c index 5ee2d4537f..c882a334b9 100644 --- a/ext/mysqlnd/mysqlnd_alloc.c +++ b/ext/mysqlnd/mysqlnd_alloc.c @@ -848,13 +848,3 @@ PHPAPI struct st_mysqlnd_allocator_methods mysqlnd_allocator = _mysqlnd_sprintf_free, #endif }; - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_alloc.h b/ext/mysqlnd/mysqlnd_alloc.h index d9ceca2eac..e5377e0285 100644 --- a/ext/mysqlnd/mysqlnd_alloc.h +++ b/ext/mysqlnd/mysqlnd_alloc.h @@ -85,12 +85,3 @@ static inline MYSQLND_CSTRING mnd_str2c(const MYSQLND_STRING str) } #endif /* MYSQLND_ALLOC_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_auth.c b/ext/mysqlnd/mysqlnd_auth.c index 9822b40537..3fcc2d8cf0 100644 --- a/ext/mysqlnd/mysqlnd_auth.c +++ b/ext/mysqlnd/mysqlnd_auth.c @@ -1105,13 +1105,3 @@ mysqlnd_register_builtin_authentication_plugins(void) #endif } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_auth.h b/ext/mysqlnd/mysqlnd_auth.h index 6c115d9e05..ced45b0bed 100644 --- a/ext/mysqlnd/mysqlnd_auth.h +++ b/ext/mysqlnd/mysqlnd_auth.h @@ -98,12 +98,3 @@ mysqlnd_run_authentication( PHPAPI void php_mysqlnd_scramble(zend_uchar * const buffer, const zend_uchar * const scramble, const zend_uchar * const pass, const size_t pass_len); #endif /* MYSQLND_AUTH_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_block_alloc.c b/ext/mysqlnd/mysqlnd_block_alloc.c index e1d3f846ec..15de3138b3 100644 --- a/ext/mysqlnd/mysqlnd_block_alloc.c +++ b/ext/mysqlnd/mysqlnd_block_alloc.c @@ -208,12 +208,3 @@ mysqlnd_mempool_restore_state(MYSQLND_MEMORY_POOL * pool) DBG_VOID_RETURN; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_block_alloc.h b/ext/mysqlnd/mysqlnd_block_alloc.h index f3adde5af0..7390fa4ce7 100644 --- a/ext/mysqlnd/mysqlnd_block_alloc.h +++ b/ext/mysqlnd/mysqlnd_block_alloc.h @@ -26,13 +26,3 @@ PHPAPI void mysqlnd_mempool_save_state(MYSQLND_MEMORY_POOL * pool); PHPAPI void mysqlnd_mempool_restore_state(MYSQLND_MEMORY_POOL * pool); #endif /* MYSQLND_BLOCK_ALLOC_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_charset.c b/ext/mysqlnd/mysqlnd_charset.c index ce9708ce4c..315f754c68 100644 --- a/ext/mysqlnd/mysqlnd_charset.c +++ b/ext/mysqlnd/mysqlnd_charset.c @@ -939,13 +939,3 @@ mysqlnd_charsets_plugin_register(void) mysqlnd_plugin_register_ex((struct st_mysqlnd_plugin_header *) &mysqlnd_plugin_charsets_plugin); } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_charset.h b/ext/mysqlnd/mysqlnd_charset.h index 96dc95df9d..39ed4e293b 100644 --- a/ext/mysqlnd/mysqlnd_charset.h +++ b/ext/mysqlnd/mysqlnd_charset.h @@ -42,12 +42,3 @@ struct st_mysqlnd_plugin_charsets void mysqlnd_charsets_plugin_register(void); #endif /* MYSQLND_CHARSET_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_commands.c b/ext/mysqlnd/mysqlnd_commands.c index c292810b4f..999b4f614c 100644 --- a/ext/mysqlnd/mysqlnd_commands.c +++ b/ext/mysqlnd/mysqlnd_commands.c @@ -704,12 +704,3 @@ MYSQLND_CLASS_METHODS_START(mysqlnd_command) MYSQLND_METHOD(mysqlnd_command, enable_ssl), MYSQLND_METHOD(mysqlnd_command, handshake), MYSQLND_CLASS_METHODS_END; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_commands.h b/ext/mysqlnd/mysqlnd_commands.h index a9041f76e1..ed490904b9 100644 --- a/ext/mysqlnd/mysqlnd_commands.h +++ b/ext/mysqlnd/mysqlnd_commands.h @@ -23,12 +23,3 @@ //extern func_mysqlnd__run_command mysqlnd_run_command; #endif /* MYSQLND_COMMANDS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_connection.c b/ext/mysqlnd/mysqlnd_connection.c index 0a4461c2eb..068f387c97 100644 --- a/ext/mysqlnd/mysqlnd_connection.c +++ b/ext/mysqlnd/mysqlnd_connection.c @@ -2711,13 +2711,3 @@ mysqlnd_connection_init(const size_t client_flags, const zend_bool persistent, M DBG_RETURN(ret); } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_connection.h b/ext/mysqlnd/mysqlnd_connection.h index a5c07c3af6..ade46afbb4 100644 --- a/ext/mysqlnd/mysqlnd_connection.h +++ b/ext/mysqlnd/mysqlnd_connection.h @@ -76,12 +76,3 @@ PHPAPI void mysqlnd_error_info_free_contents(MYSQLND_ERROR_INFO * const info); PHPAPI void mysqlnd_connection_state_init(struct st_mysqlnd_connection_state * const state); #endif /* MYSQLND_CONNECTION_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_debug.c b/ext/mysqlnd/mysqlnd_debug.c index 409097a559..2142fe63b3 100644 --- a/ext/mysqlnd/mysqlnd_debug.c +++ b/ext/mysqlnd/mysqlnd_debug.c @@ -780,13 +780,3 @@ mysqlnd_debug_trace_plugin_register(void) mysqlnd_plugin_register_ex((struct st_mysqlnd_plugin_header *) &mysqlnd_plugin_trace_log_plugin); } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_debug.h b/ext/mysqlnd/mysqlnd_debug.h index 08a3a2b6a2..08ce1adba4 100644 --- a/ext/mysqlnd/mysqlnd_debug.h +++ b/ext/mysqlnd/mysqlnd_debug.h @@ -228,12 +228,3 @@ static inline void TRACE_ALLOC_ENTER(const char * const func_name) {} #endif #endif /* MYSQLND_DEBUG_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_driver.c b/ext/mysqlnd/mysqlnd_driver.c index 46872d9ecb..7c44cd4f71 100644 --- a/ext/mysqlnd/mysqlnd_driver.c +++ b/ext/mysqlnd/mysqlnd_driver.c @@ -319,12 +319,3 @@ PHPAPI MYSQLND_CLASS_METHODS_START(mysqlnd_object_factory) MYSQLND_METHOD(mysqlnd_object_factory, get_vio), MYSQLND_METHOD(mysqlnd_object_factory, get_protocol_payload_decoder_factory) MYSQLND_CLASS_METHODS_END; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_enum_n_def.h b/ext/mysqlnd/mysqlnd_enum_n_def.h index 21b84ce71f..3c96763ba6 100644 --- a/ext/mysqlnd/mysqlnd_enum_n_def.h +++ b/ext/mysqlnd/mysqlnd_enum_n_def.h @@ -711,13 +711,3 @@ enum mysqlnd_buffered_type #define MYSQLND_CLIENT_KNOWS_RSET_COPY_DATA 1 #endif /* MYSQLND_ENUM_N_DEF_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_ext_plugin.c b/ext/mysqlnd/mysqlnd_ext_plugin.c index 9bcb12f341..c2f42eb2f6 100644 --- a/ext/mysqlnd/mysqlnd_ext_plugin.c +++ b/ext/mysqlnd/mysqlnd_ext_plugin.c @@ -448,13 +448,3 @@ struct st_mysqlnd_plugin_methods_xetters mysqlnd_plugin_methods_xetters = _mysqlnd_command_factory_set, }, }; - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_ext_plugin.h b/ext/mysqlnd/mysqlnd_ext_plugin.h index cbd0982982..6bb96461f5 100644 --- a/ext/mysqlnd/mysqlnd_ext_plugin.h +++ b/ext/mysqlnd/mysqlnd_ext_plugin.h @@ -164,12 +164,3 @@ PHPAPI extern struct st_mysqlnd_plugin_methods_xetters mysqlnd_plugin_methods_xe #define mysqlnd_error_info_set_methods(m) mysqlnd_plugin_methods_xetters.error_info.set((m)) #endif /* MYSQLND_EXT_PLUGIN_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_loaddata.c b/ext/mysqlnd/mysqlnd_loaddata.c index a77961717d..f1cb2f44c2 100644 --- a/ext/mysqlnd/mysqlnd_loaddata.c +++ b/ext/mysqlnd/mysqlnd_loaddata.c @@ -228,12 +228,3 @@ infile_error: DBG_RETURN(result); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_net.c b/ext/mysqlnd/mysqlnd_net.c index 6fb9c5fde2..cb29d0b258 100644 --- a/ext/mysqlnd/mysqlnd_net.c +++ b/ext/mysqlnd/mysqlnd_net.c @@ -1216,14 +1216,3 @@ mysqlnd_net_free(MYSQLND_NET * const net, MYSQLND_STATS * stats, MYSQLND_ERROR_I DBG_VOID_RETURN; } /* }}} */ - - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_plugin.c b/ext/mysqlnd/mysqlnd_plugin.c index 4c9d0a0bf5..884b5db7c9 100644 --- a/ext/mysqlnd/mysqlnd_plugin.c +++ b/ext/mysqlnd/mysqlnd_plugin.c @@ -188,13 +188,3 @@ PHPAPI unsigned int mysqlnd_plugin_count() return mysqlnd_plugins_counter; } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_plugin.h b/ext/mysqlnd/mysqlnd_plugin.h index 7a1448faba..02054d23ea 100644 --- a/ext/mysqlnd/mysqlnd_plugin.h +++ b/ext/mysqlnd/mysqlnd_plugin.h @@ -29,13 +29,3 @@ void mysqlnd_register_builtin_authentication_plugins(void); void mysqlnd_example_plugin_register(void); #endif /* MYSQLND_PLUGIN_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_portability.h b/ext/mysqlnd/mysqlnd_portability.h index cb09a47915..6816a8af3a 100644 --- a/ext/mysqlnd/mysqlnd_portability.h +++ b/ext/mysqlnd/mysqlnd_portability.h @@ -389,13 +389,3 @@ typedef union { #endif /* float8get */ #endif /* MYSQLND_PORTABILITY_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_priv.h b/ext/mysqlnd/mysqlnd_priv.h index 36113d3da9..d61e45b58a 100644 --- a/ext/mysqlnd/mysqlnd_priv.h +++ b/ext/mysqlnd/mysqlnd_priv.h @@ -34,12 +34,3 @@ PHPAPI extern MYSQLND_CLASS_METHOD_TABLE_NAME_FORWARD(mysqlnd_command); enum_func_status mysqlnd_handle_local_infile(MYSQLND_CONN_DATA * conn, const char * const filename, zend_bool * is_warning); #endif /* MYSQLND_PRIV_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_protocol_frame_codec.c b/ext/mysqlnd/mysqlnd_protocol_frame_codec.c index 4f84c02c5d..b65d9cc017 100644 --- a/ext/mysqlnd/mysqlnd_protocol_frame_codec.c +++ b/ext/mysqlnd/mysqlnd_protocol_frame_codec.c @@ -495,13 +495,3 @@ mysqlnd_pfc_free(MYSQLND_PFC * const pfc, MYSQLND_STATS * stats, MYSQLND_ERROR_I DBG_VOID_RETURN; } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_protocol_frame_codec.h b/ext/mysqlnd/mysqlnd_protocol_frame_codec.h index e69a61be44..3e88ba84ac 100644 --- a/ext/mysqlnd/mysqlnd_protocol_frame_codec.h +++ b/ext/mysqlnd/mysqlnd_protocol_frame_codec.h @@ -24,12 +24,3 @@ PHPAPI MYSQLND_PFC * mysqlnd_pfc_init(const zend_bool persistent, MYSQLND_CLASS_ PHPAPI void mysqlnd_pfc_free(MYSQLND_PFC * const pfc, MYSQLND_STATS * stats, MYSQLND_ERROR_INFO * error_info); #endif /* MYSQLND_PROTOCOL_FRAME_CODEC_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_ps.c b/ext/mysqlnd/mysqlnd_ps.c index 703c1f050a..bf779a13c4 100644 --- a/ext/mysqlnd/mysqlnd_ps.c +++ b/ext/mysqlnd/mysqlnd_ps.c @@ -2268,13 +2268,3 @@ void _mysqlnd_init_ps_subsystem() _mysqlnd_init_ps_fetch_subsystem(); } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_ps.h b/ext/mysqlnd/mysqlnd_ps.h index 36ca1227e7..f2eba36ffc 100644 --- a/ext/mysqlnd/mysqlnd_ps.h +++ b/ext/mysqlnd/mysqlnd_ps.h @@ -43,12 +43,3 @@ void _mysqlnd_init_ps_fetch_subsystem(); void ps_fetch_from_1_to_8_bytes(zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row, unsigned int byte_count); #endif /* MYSQLND_PS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_ps_codec.c b/ext/mysqlnd/mysqlnd_ps_codec.c index f45cbaae3e..3e8dbe2e46 100644 --- a/ext/mysqlnd/mysqlnd_ps_codec.c +++ b/ext/mysqlnd/mysqlnd_ps_codec.c @@ -966,12 +966,3 @@ mysqlnd_stmt_execute_generate_request(MYSQLND_STMT * const s, zend_uchar ** requ DBG_RETURN(ret); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_read_buffer.c b/ext/mysqlnd/mysqlnd_read_buffer.c index 198764baa1..104d554724 100644 --- a/ext/mysqlnd/mysqlnd_read_buffer.c +++ b/ext/mysqlnd/mysqlnd_read_buffer.c @@ -85,12 +85,3 @@ mysqlnd_create_read_buffer(const size_t count) DBG_RETURN(ret); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_result.c b/ext/mysqlnd/mysqlnd_result.c index 74fd2d1840..7d8e95133d 100644 --- a/ext/mysqlnd/mysqlnd_result.c +++ b/ext/mysqlnd/mysqlnd_result.c @@ -2041,13 +2041,3 @@ mysqlnd_result_buffered_c_init(MYSQLND_RES * result, const unsigned int field_co DBG_RETURN(ret); } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_result.h b/ext/mysqlnd/mysqlnd_result.h index b8b919d942..425b5f355e 100644 --- a/ext/mysqlnd/mysqlnd_result.h +++ b/ext/mysqlnd/mysqlnd_result.h @@ -28,12 +28,3 @@ PHPAPI MYSQLND_RES_BUFFERED_C * mysqlnd_result_buffered_c_init(MYSQLND_RES * res enum_func_status mysqlnd_query_read_result_set_header(MYSQLND_CONN_DATA * conn, MYSQLND_STMT * stmt); #endif /* MYSQLND_RESULT_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_result_meta.c b/ext/mysqlnd/mysqlnd_result_meta.c index 0141cec4f0..cab5c55398 100644 --- a/ext/mysqlnd/mysqlnd_result_meta.c +++ b/ext/mysqlnd/mysqlnd_result_meta.c @@ -330,12 +330,3 @@ _mysqlnd_plugin_get_plugin_result_metadata_data(const MYSQLND_RES_METADATA * met DBG_RETURN((void *)((char *)meta + sizeof(MYSQLND_RES_METADATA) + plugin_id * sizeof(void *))); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_result_meta.h b/ext/mysqlnd/mysqlnd_result_meta.h index 09af69837e..c4f7af9f8f 100644 --- a/ext/mysqlnd/mysqlnd_result_meta.h +++ b/ext/mysqlnd/mysqlnd_result_meta.h @@ -26,12 +26,3 @@ PHPAPI struct st_mysqlnd_res_meta_methods * mysqlnd_result_metadata_get_methods( PHPAPI void ** _mysqlnd_plugin_get_plugin_result_metadata_data(const MYSQLND_RES_METADATA * meta, unsigned int plugin_id); #endif /* MYSQLND_RESULT_META_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_reverse_api.c b/ext/mysqlnd/mysqlnd_reverse_api.c index 931c3b26e2..cb71ee5158 100644 --- a/ext/mysqlnd/mysqlnd_reverse_api.c +++ b/ext/mysqlnd/mysqlnd_reverse_api.c @@ -99,13 +99,3 @@ zval_to_mysqlnd(zval * zv, const unsigned int client_api_capabilities, unsigned return NULL; } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_reverse_api.h b/ext/mysqlnd/mysqlnd_reverse_api.h index 448f33bfea..cbe60665d2 100644 --- a/ext/mysqlnd/mysqlnd_reverse_api.h +++ b/ext/mysqlnd/mysqlnd_reverse_api.h @@ -36,12 +36,3 @@ PHPAPI void mysqlnd_reverse_api_register_api(const MYSQLND_REVERSE_API * apiext) PHPAPI MYSQLND * zval_to_mysqlnd(zval * zv, const unsigned int client_api_capabilities, unsigned int * save_client_api_capabilities); #endif /* MYSQLND_REVERSE_API_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_statistics.c b/ext/mysqlnd/mysqlnd_statistics.c index f3069b580f..9bc3f0454b 100644 --- a/ext/mysqlnd/mysqlnd_statistics.c +++ b/ext/mysqlnd/mysqlnd_statistics.c @@ -292,14 +292,3 @@ _mysqlnd_get_client_stats(MYSQLND_STATS * stats_ptr, zval *return_value ZEND_FIL DBG_VOID_RETURN; } /* }}} */ - - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_statistics.h b/ext/mysqlnd/mysqlnd_statistics.h index 869c24a56e..81246d3e11 100644 --- a/ext/mysqlnd/mysqlnd_statistics.h +++ b/ext/mysqlnd/mysqlnd_statistics.h @@ -119,12 +119,3 @@ PHPAPI mysqlnd_stat_trigger mysqlnd_stats_set_trigger(MYSQLND_STATS * const stat PHPAPI mysqlnd_stat_trigger mysqlnd_stats_reset_triggers(MYSQLND_STATS * const stats); #endif /* MYSQLND_STATISTICS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_vio.c b/ext/mysqlnd/mysqlnd_vio.c index 50db782be6..ee2bb40d56 100644 --- a/ext/mysqlnd/mysqlnd_vio.c +++ b/ext/mysqlnd/mysqlnd_vio.c @@ -789,13 +789,3 @@ mysqlnd_vio_free(MYSQLND_VIO * const vio, MYSQLND_STATS * stats, MYSQLND_ERROR_I DBG_VOID_RETURN; } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_vio.h b/ext/mysqlnd/mysqlnd_vio.h index b0f6d85589..4d15618929 100644 --- a/ext/mysqlnd/mysqlnd_vio.h +++ b/ext/mysqlnd/mysqlnd_vio.h @@ -24,12 +24,3 @@ PHPAPI MYSQLND_VIO * mysqlnd_vio_init(zend_bool persistent, MYSQLND_CLASS_METHOD PHPAPI void mysqlnd_vio_free(MYSQLND_VIO * const vio, MYSQLND_STATS * stats, MYSQLND_ERROR_INFO * error_info); #endif /* MYSQLND_VIO_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.c b/ext/mysqlnd/mysqlnd_wireprotocol.c index a6c0ac949b..bb748e4d61 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.c +++ b/ext/mysqlnd/mysqlnd_wireprotocol.c @@ -2732,13 +2732,3 @@ mysqlnd_protocol_payload_decoder_factory_free(MYSQLND_PROTOCOL_PAYLOAD_DECODER_F DBG_VOID_RETURN; } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.h b/ext/mysqlnd/mysqlnd_wireprotocol.h index 7dfb256eec..c48fea0fb1 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.h +++ b/ext/mysqlnd/mysqlnd_wireprotocol.h @@ -316,12 +316,3 @@ PHPAPI MYSQLND_PROTOCOL_PAYLOAD_DECODER_FACTORY * mysqlnd_protocol_payload_decod PHPAPI void mysqlnd_protocol_payload_decoder_factory_free(MYSQLND_PROTOCOL_PAYLOAD_DECODER_FACTORY * const payload_decoder_factory); #endif /* MYSQLND_WIREPROTOCOL_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/php_mysqlnd.c b/ext/mysqlnd/php_mysqlnd.c index 53a85701d1..60e1b25603 100644 --- a/ext/mysqlnd/php_mysqlnd.c +++ b/ext/mysqlnd/php_mysqlnd.c @@ -363,12 +363,3 @@ ZEND_TSRMLS_CACHE_DEFINE() ZEND_GET_MODULE(mysqlnd) #endif /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/mysqlnd/php_mysqlnd.h b/ext/mysqlnd/php_mysqlnd.h index a3e88bf496..e4a8ef3bc6 100644 --- a/ext/mysqlnd/php_mysqlnd.h +++ b/ext/mysqlnd/php_mysqlnd.h @@ -24,12 +24,3 @@ extern zend_module_entry mysqlnd_module_entry; #endif /* PHP_MYSQLND_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index be628ebc29..a3364be7e6 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -3467,12 +3467,3 @@ void php_oci_dtrace_check_connection(php_oci_connection *connection, sb4 errcode /* }}} */ #endif /* HAVE_OCI8 */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/oci8/oci8_collection.c b/ext/oci8/oci8_collection.c index 4969b6edc2..a89b5abe2c 100644 --- a/ext/oci8/oci8_collection.c +++ b/ext/oci8/oci8_collection.c @@ -810,12 +810,3 @@ void php_oci_collection_close(php_oci_collection *collection) /* }}} */ #endif /* HAVE_OCI8 */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/oci8/oci8_failover.c b/ext/oci8/oci8_failover.c index c680713b05..5b836bb239 100644 --- a/ext/oci8/oci8_failover.c +++ b/ext/oci8/oci8_failover.c @@ -152,12 +152,3 @@ int php_oci_register_taf_callback(php_oci_connection *connection, zval *callback /* }}} */ #endif /* HAVE_OCI8 */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/oci8/oci8_interface.c b/ext/oci8/oci8_interface.c index d96ca501f6..ae05c08a28 100644 --- a/ext/oci8/oci8_interface.c +++ b/ext/oci8/oci8_interface.c @@ -2607,12 +2607,3 @@ PHP_FUNCTION(oci_get_implicit_resultset) /* }}} */ #endif /* HAVE_OCI8 */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/oci8/oci8_lob.c b/ext/oci8/oci8_lob.c index 6d034c10ae..5a31618713 100644 --- a/ext/oci8/oci8_lob.c +++ b/ext/oci8/oci8_lob.c @@ -949,12 +949,3 @@ int php_oci_lob_write_tmp (php_oci_descriptor *descriptor, zend_long type, char /* }}} */ #endif /* HAVE_OCI8 */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/oci8/oci8_statement.c b/ext/oci8/oci8_statement.c index a3ebeca865..4face29e4a 100644 --- a/ext/oci8/oci8_statement.c +++ b/ext/oci8/oci8_statement.c @@ -1952,12 +1952,3 @@ php_oci_bind *php_oci_bind_array_helper_date(zval *var, zend_long max_table_leng /* }}} */ #endif /* HAVE_OCI8 */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h index a601aa4a63..061c2c7ae7 100644 --- a/ext/oci8/php_oci8.h +++ b/ext/oci8/php_oci8.h @@ -63,10 +63,3 @@ PHP_MINFO_FUNCTION(oci); # define oci8_module_ptr NULL #endif /* HAVE_OCI8 */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h index b52d82d9d9..8d1e326815 100644 --- a/ext/oci8/php_oci8_int.h +++ b/ext/oci8/php_oci8_int.h @@ -563,12 +563,3 @@ ZEND_EXTERN_MODULE_GLOBALS(oci) # define oci8_module_ptr NULL #endif /* HAVE_OCI8 */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 4e41b22108..37a207e624 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -3854,12 +3854,3 @@ PHP_FUNCTION(odbc_tableprivileges) #endif /* HAVE_DBMAKER */ #endif /* HAVE_UODBC */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/odbc/php_odbc.h b/ext/odbc/php_odbc.h index 3de2ac6375..351b31ea40 100644 --- a/ext/odbc/php_odbc.h +++ b/ext/odbc/php_odbc.h @@ -116,10 +116,3 @@ PHP_FUNCTION(odbc_statistics); #define phpext_odbc_ptr odbc_module_ptr #endif /* PHP_ODBC_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/odbc/php_odbc_includes.h b/ext/odbc/php_odbc_includes.h index 24bbdff94c..858a28af68 100644 --- a/ext/odbc/php_odbc_includes.h +++ b/ext/odbc/php_odbc_includes.h @@ -278,10 +278,3 @@ ZEND_TSRMLS_CACHE_EXTERN() #endif /* HAVE_UODBC */ #endif /* PHP_ODBC_INCLUDES_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/opcache/Optimizer/dfa_pass.c b/ext/opcache/Optimizer/dfa_pass.c index 79717a64bd..494e5a1f49 100644 --- a/ext/opcache/Optimizer/dfa_pass.c +++ b/ext/opcache/Optimizer/dfa_pass.c @@ -1227,11 +1227,3 @@ void zend_optimize_dfa(zend_op_array *op_array, zend_optimizer_ctx *ctx) /* Destroy SSA */ zend_arena_release(&ctx->arena, checkpoint); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/escape_analysis.c b/ext/opcache/Optimizer/escape_analysis.c index a92d773783..1d1cea33fa 100644 --- a/ext/opcache/Optimizer/escape_analysis.c +++ b/ext/opcache/Optimizer/escape_analysis.c @@ -565,11 +565,3 @@ int zend_ssa_escape_analysis(const zend_script *script, zend_op_array *op_array, return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_call_graph.c b/ext/opcache/Optimizer/zend_call_graph.c index a20180af37..d33b26e18d 100644 --- a/ext/opcache/Optimizer/zend_call_graph.c +++ b/ext/opcache/Optimizer/zend_call_graph.c @@ -294,11 +294,3 @@ zend_call_info **zend_build_call_map(zend_arena **arena, zend_func_info *info, z return map; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_call_graph.h b/ext/opcache/Optimizer/zend_call_graph.h index 6c8e5efa09..0b98c3fbbb 100644 --- a/ext/opcache/Optimizer/zend_call_graph.h +++ b/ext/opcache/Optimizer/zend_call_graph.h @@ -76,11 +76,3 @@ int zend_analyze_calls(zend_arena **arena, zend_script *script, uint32_t build_f END_EXTERN_C() #endif /* ZEND_CALL_GRAPH_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_cfg.c b/ext/opcache/Optimizer/zend_cfg.c index 1bd0a4b5e0..f7259dc0f2 100644 --- a/ext/opcache/Optimizer/zend_cfg.c +++ b/ext/opcache/Optimizer/zend_cfg.c @@ -895,11 +895,3 @@ int zend_cfg_identify_loops(const zend_op_array *op_array, zend_cfg *cfg) /* {{{ return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_cfg.h b/ext/opcache/Optimizer/zend_cfg.h index fcb7657842..a47c03a3e3 100644 --- a/ext/opcache/Optimizer/zend_cfg.h +++ b/ext/opcache/Optimizer/zend_cfg.h @@ -126,11 +126,3 @@ int zend_cfg_identify_loops(const zend_op_array *op_array, zend_cfg *cfg); END_EXTERN_C() #endif /* ZEND_CFG_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_dfg.c b/ext/opcache/Optimizer/zend_dfg.c index 66dd15da00..ae03e76fd5 100644 --- a/ext/opcache/Optimizer/zend_dfg.c +++ b/ext/opcache/Optimizer/zend_dfg.c @@ -259,11 +259,3 @@ op2_use: return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_dfg.h b/ext/opcache/Optimizer/zend_dfg.h index 0c50cef7da..f27d5ddcbf 100644 --- a/ext/opcache/Optimizer/zend_dfg.h +++ b/ext/opcache/Optimizer/zend_dfg.h @@ -48,11 +48,3 @@ int zend_build_dfg(const zend_op_array *op_array, const zend_cfg *cfg, zend_dfg END_EXTERN_C() #endif /* ZEND_DFG_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_dump.c b/ext/opcache/Optimizer/zend_dump.c index ad4d393bd6..2dfdb7fe43 100644 --- a/ext/opcache/Optimizer/zend_dump.c +++ b/ext/opcache/Optimizer/zend_dump.c @@ -1233,11 +1233,3 @@ void zend_dump_phi_placement(const zend_op_array *op_array, const zend_ssa *ssa) } } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_dump.h b/ext/opcache/Optimizer/zend_dump.h index 8786113ae5..d9bb41af8e 100644 --- a/ext/opcache/Optimizer/zend_dump.h +++ b/ext/opcache/Optimizer/zend_dump.h @@ -45,11 +45,3 @@ void zend_dump_ht(HashTable *ht); END_EXTERN_C() #endif /* ZEND_DUMP_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_func_info.c b/ext/opcache/Optimizer/zend_func_info.c index fb21634885..07804dee4e 100644 --- a/ext/opcache/Optimizer/zend_func_info.c +++ b/ext/opcache/Optimizer/zend_func_info.c @@ -1773,11 +1773,3 @@ int zend_func_info_shutdown(void) } return SUCCESS; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_func_info.h b/ext/opcache/Optimizer/zend_func_info.h index 656cc59fad..ce56bd10d3 100644 --- a/ext/opcache/Optimizer/zend_func_info.h +++ b/ext/opcache/Optimizer/zend_func_info.h @@ -61,11 +61,3 @@ int zend_func_info_shutdown(void); END_EXTERN_C() #endif /* ZEND_FUNC_INFO_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_inference.c b/ext/opcache/Optimizer/zend_inference.c index 648e4e621c..ad4c0359c4 100644 --- a/ext/opcache/Optimizer/zend_inference.c +++ b/ext/opcache/Optimizer/zend_inference.c @@ -4703,11 +4703,3 @@ int zend_may_throw(const zend_op *opline, zend_op_array *op_array, zend_ssa *ssa return 1; } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_inference.h b/ext/opcache/Optimizer/zend_inference.h index 297be8e616..c0ca194931 100644 --- a/ext/opcache/Optimizer/zend_inference.h +++ b/ext/opcache/Optimizer/zend_inference.h @@ -269,11 +269,3 @@ int zend_may_throw(const zend_op *opline, zend_op_array *op_array, zend_ssa *ssa END_EXTERN_C() #endif /* ZEND_INFERENCE_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_optimizer.c b/ext/opcache/Optimizer/zend_optimizer.c index 22868a4c21..6040b997fa 100644 --- a/ext/opcache/Optimizer/zend_optimizer.c +++ b/ext/opcache/Optimizer/zend_optimizer.c @@ -1599,11 +1599,3 @@ int zend_optimizer_shutdown(void) { return zend_func_info_shutdown(); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_ssa.c b/ext/opcache/Optimizer/zend_ssa.c index a3a5130385..c0553c3d83 100644 --- a/ext/opcache/Optimizer/zend_ssa.c +++ b/ext/opcache/Optimizer/zend_ssa.c @@ -1615,11 +1615,3 @@ void zend_ssa_rename_var_uses(zend_ssa *ssa, int old, int new, zend_bool update_ old_var->phi_use_chain = NULL; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_ssa.h b/ext/opcache/Optimizer/zend_ssa.h index 4ee442dcab..6cecf43f26 100644 --- a/ext/opcache/Optimizer/zend_ssa.h +++ b/ext/opcache/Optimizer/zend_ssa.h @@ -316,11 +316,3 @@ static zend_always_inline void zend_ssa_rename_defs_of_instr(zend_ssa *ssa, zend } while (0) #endif /* ZEND_SSA_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/Optimizer/zend_worklist.h b/ext/opcache/Optimizer/zend_worklist.h index 3ff1df14ee..9501ac08f6 100644 --- a/ext/opcache/Optimizer/zend_worklist.h +++ b/ext/opcache/Optimizer/zend_worklist.h @@ -119,11 +119,3 @@ static inline int zend_worklist_pop(zend_worklist *worklist) } #endif /* _ZEND_WORKLIST_H_ */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/opcache/zend_accelerator_util_funcs.h b/ext/opcache/zend_accelerator_util_funcs.h index 0666b17759..8552fa1e4b 100644 --- a/ext/opcache/zend_accelerator_util_funcs.h +++ b/ext/opcache/zend_accelerator_util_funcs.h @@ -40,10 +40,3 @@ unsigned int zend_adler32(unsigned int checksum, signed char *buf, uint32_t len) unsigned int zend_accel_script_checksum(zend_persistent_script *persistent_script); #endif /* ZEND_ACCELERATOR_UTIL_FUNCS_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 142324c23f..942733fada 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -6956,12 +6956,3 @@ PHP_FUNCTION(openssl_random_pseudo_bytes) } } /* }}} */ - -/* - * Local variables: - * tab-width: 8 - * c-basic-offset: 8 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/openssl/php_openssl.h b/ext/openssl/php_openssl.h index 7147ae4a79..7926b475e7 100644 --- a/ext/openssl/php_openssl.h +++ b/ext/openssl/php_openssl.h @@ -182,10 +182,3 @@ PHP_FUNCTION(openssl_get_cert_locations); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c index cbc78c565f..31e6aa9ea8 100644 --- a/ext/openssl/xp_ssl.c +++ b/ext/openssl/xp_ssl.c @@ -2739,12 +2739,3 @@ php_stream *php_openssl_ssl_socket_factory(const char *proto, size_t protolen, return stream; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c index dc0afb8db6..7a06e82398 100644 --- a/ext/pcntl/pcntl.c +++ b/ext/pcntl/pcntl.c @@ -1497,11 +1497,3 @@ static void pcntl_interrupt_function(zend_execute_data *execute_data) orig_interrupt_function(execute_data); } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/pcntl/php_pcntl.h b/ext/pcntl/php_pcntl.h index ee8f1c1cfa..2ddb45dbe8 100644 --- a/ext/pcntl/php_pcntl.h +++ b/ext/pcntl/php_pcntl.h @@ -97,12 +97,3 @@ ZEND_END_MODULE_GLOBALS(pcntl) #define REGISTER_PCNTL_ERRNO_CONSTANT(name) REGISTER_LONG_CONSTANT("PCNTL_" #name, name, CONST_CS | CONST_PERSISTENT) #endif /* PHP_PCNTL_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/pcntl/php_signal.c b/ext/pcntl/php_signal.c index e3b6c30572..da7881b255 100644 --- a/ext/pcntl/php_signal.c +++ b/ext/pcntl/php_signal.c @@ -65,12 +65,3 @@ Sigfunc *php_signal(int signo, Sigfunc *func, int restart) { return php_signal4(signo, func, restart, 0); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index edbc2c90b4..35c9956fdb 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -3057,12 +3057,3 @@ PHPAPI pcre2_code *php_pcre_pce_re(pcre_cache_entry *pce) }/*}}}*/ #endif /* HAVE_PCRE || HAVE_BUNDLED_PCRE */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/pdo/README b/ext/pdo/README index cb7b4297d4..a778543822 100644 --- a/ext/pdo/README +++ b/ext/pdo/README @@ -48,5 +48,3 @@ When the database handle is closed or destroyed (or at request end for persistent handles), the driver will implicitly rollBack(). It is your responsibility to call commit() when you are done making changes and autocommit is turned off. - -vim:tw=78:et diff --git a/ext/pdo/config.m4 b/ext/pdo/config.m4 index 91c977a7a9..511f33bbd7 100644 --- a/ext/pdo/config.m4 +++ b/ext/pdo/config.m4 @@ -1,5 +1,4 @@ dnl config.m4 for extension pdo -dnl vim:se ts=2 sw=2 et: AC_DEFUN([PHP_PDO_PEAR_CHECK],[ pdo_running_under_pear=0 diff --git a/ext/pdo/pdo.c b/ext/pdo/pdo.c index 8c5fc52e77..ddd5a4d1bc 100644 --- a/ext/pdo/pdo.c +++ b/ext/pdo/pdo.c @@ -392,12 +392,3 @@ PHP_MINFO_FUNCTION(pdo) } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo/pdo_dbh.c b/ext/pdo/pdo_dbh.c index 7b3c306356..0e3f63fe3f 100644 --- a/ext/pdo/pdo_dbh.c +++ b/ext/pdo/pdo_dbh.c @@ -1557,12 +1557,3 @@ ZEND_RSRC_DTOR_FUNC(php_pdo_pdbh_dtor) /* {{{ */ } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo/pdo_sql_parser.re b/ext/pdo/pdo_sql_parser.re index 5a26cde862..5950cdc38e 100644 --- a/ext/pdo/pdo_sql_parser.re +++ b/ext/pdo/pdo_sql_parser.re @@ -414,12 +414,3 @@ clean_up: return ret; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker ft=c - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo/pdo_stmt.c b/ext/pdo/pdo_stmt.c index 6b8051e9de..d18782437a 100644 --- a/ext/pdo/pdo_stmt.c +++ b/ext/pdo/pdo_stmt.c @@ -2695,12 +2695,3 @@ void pdo_stmt_init(void) pdo_row_object_handlers.get_class_name = row_get_classname; pdo_row_object_handlers.compare_objects = row_compare; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo/php_pdo.h b/ext/pdo/php_pdo.h index 84c65b12ba..50d38dba8f 100644 --- a/ext/pdo/php_pdo.h +++ b/ext/pdo/php_pdo.h @@ -73,13 +73,3 @@ ZEND_END_MODULE_GLOBALS(pdo) #endif /* PHP_PDO_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h index a86dab2117..d17b168c2d 100644 --- a/ext/pdo/php_pdo_driver.h +++ b/ext/pdo/php_pdo_driver.h @@ -692,11 +692,3 @@ PDO_API void php_pdo_free_statement(pdo_stmt_t *stmt); #endif /* PHP_PDO_DRIVER_H */ -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo/php_pdo_error.h b/ext/pdo/php_pdo_error.h index 0b57e13ec1..b9702833dd 100644 --- a/ext/pdo/php_pdo_error.h +++ b/ext/pdo/php_pdo_error.h @@ -35,11 +35,3 @@ PDO_API void pdo_handle_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt); #define PDO_HANDLE_STMT_ERR() if (strcmp(stmt->error_code, PDO_ERR_NONE)) { pdo_handle_error(stmt->dbh, stmt); } #endif /* PHP_PDO_ERROR_H */ -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo/php_pdo_int.h b/ext/pdo/php_pdo_int.h index 1a6df1db4c..20c373bd24 100644 --- a/ext/pdo/php_pdo_int.h +++ b/ext/pdo/php_pdo_int.h @@ -59,13 +59,3 @@ int pdo_sqlstate_init_error_table(void); void pdo_sqlstate_fini_error_table(void); const char *pdo_sqlstate_state_to_description(char *state); int pdo_hash_methods(pdo_dbh_object_t *dbh, int kind); - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo/tests/bug_34630.phpt b/ext/pdo/tests/bug_34630.phpt index 070217bafe..5642b2130e 100644 --- a/ext/pdo/tests/bug_34630.phpt +++ b/ext/pdo/tests/bug_34630.phpt @@ -1,7 +1,7 @@ --TEST-- PDO Common: Bug #34630 (inserting streams as LOBs) --SKIPIF-- -setAttribute(PDO::STATEMENT_ATTR_CLASS, NULL)) --SKIPIF-- -query() parameter parsing/checking needs an update) --SKIPIF-- - --REDIRECTTEST-- diff --git a/ext/pdo_firebird/firebird_driver.c b/ext/pdo_firebird/firebird_driver.c index 9cbd28ac3e..6c83717e65 100644 --- a/ext/pdo_firebird/firebird_driver.c +++ b/ext/pdo_firebird/firebird_driver.c @@ -682,12 +682,3 @@ const pdo_driver_t pdo_firebird_driver = { /* {{{ */ pdo_firebird_handle_factory }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_firebird/firebird_statement.c b/ext/pdo_firebird/firebird_statement.c index 8be52b53dd..2dec82b0ba 100644 --- a/ext/pdo_firebird/firebird_statement.c +++ b/ext/pdo_firebird/firebird_statement.c @@ -787,12 +787,3 @@ const struct pdo_stmt_methods firebird_stmt_methods = { /* {{{ */ firebird_stmt_cursor_closer }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_firebird/pdo_firebird.c b/ext/pdo_firebird/pdo_firebird.c index 716d6ed9c7..71dec4add2 100644 --- a/ext/pdo_firebird/pdo_firebird.c +++ b/ext/pdo_firebird/pdo_firebird.c @@ -87,12 +87,3 @@ PHP_MINFO_FUNCTION(pdo_firebird) /* {{{ */ php_info_print_table_end(); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_firebird/php_pdo_firebird.h b/ext/pdo_firebird/php_pdo_firebird.h index b8d83aadaf..48ff715e8c 100644 --- a/ext/pdo_firebird/php_pdo_firebird.h +++ b/ext/pdo_firebird/php_pdo_firebird.h @@ -36,12 +36,3 @@ PHP_RSHUTDOWN_FUNCTION(pdo_firebird); PHP_MINFO_FUNCTION(pdo_firebird); #endif /* PHP_PDO_FIREBIRD_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_firebird/php_pdo_firebird_int.h b/ext/pdo_firebird/php_pdo_firebird_int.h index 0a34883d29..3694d362c0 100644 --- a/ext/pdo_firebird/php_pdo_firebird_int.h +++ b/ext/pdo_firebird/php_pdo_firebird_int.h @@ -143,12 +143,3 @@ enum { }; #endif /* PHP_PDO_FIREBIRD_INT_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_firebird/tests/common.phpt b/ext/pdo_firebird/tests/common.phpt index adad09df05..50db48d0d8 100644 --- a/ext/pdo_firebird/tests/common.phpt +++ b/ext/pdo_firebird/tests/common.phpt @@ -1,7 +1,7 @@ --TEST-- FIREBIRD --SKIPIF-- - --REDIRECTTEST-- # magic auto-configuration diff --git a/ext/pdo_mysql/config.m4 b/ext/pdo_mysql/config.m4 index 3e37a6adec..45566615fa 100644 --- a/ext/pdo_mysql/config.m4 +++ b/ext/pdo_mysql/config.m4 @@ -1,5 +1,4 @@ dnl config.m4 for extension pdo_mysql -dnl vim: se ts=2 sw=2 et: PHP_ARG_WITH(pdo-mysql, for MySQL support for PDO, [ --with-pdo-mysql[=DIR] PDO: MySQL support. DIR is the MySQL base directory diff --git a/ext/pdo_mysql/mysql_driver.c b/ext/pdo_mysql/mysql_driver.c index 3ff594f225..a0a3e35e24 100644 --- a/ext/pdo_mysql/mysql_driver.c +++ b/ext/pdo_mysql/mysql_driver.c @@ -841,12 +841,3 @@ const pdo_driver_t pdo_mysql_driver = { PDO_DRIVER_HEADER(mysql), pdo_mysql_handle_factory }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_mysql/mysql_statement.c b/ext/pdo_mysql/mysql_statement.c index 03df732dfa..ea4b13a5d2 100644 --- a/ext/pdo_mysql/mysql_statement.c +++ b/ext/pdo_mysql/mysql_statement.c @@ -934,12 +934,3 @@ const struct pdo_stmt_methods mysql_stmt_methods = { pdo_mysql_stmt_next_rowset, pdo_mysql_stmt_cursor_closer }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_mysql/pdo_mysql.c b/ext/pdo_mysql/pdo_mysql.c index f51973f4bd..54e1c931ce 100644 --- a/ext/pdo_mysql/pdo_mysql.c +++ b/ext/pdo_mysql/pdo_mysql.c @@ -263,13 +263,3 @@ zend_module_entry pdo_mysql_module_entry = { STANDARD_MODULE_PROPERTIES_EX }; /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_mysql/php_pdo_mysql.h b/ext/pdo_mysql/php_pdo_mysql.h index 10905eb3ab..fa34e70f3a 100644 --- a/ext/pdo_mysql/php_pdo_mysql.h +++ b/ext/pdo_mysql/php_pdo_mysql.h @@ -37,13 +37,3 @@ extern zend_module_entry pdo_mysql_module_entry; #endif /* PHP_PDO_MYSQL_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_mysql/tests/common.phpt b/ext/pdo_mysql/tests/common.phpt index f55d1f883b..0d002546e0 100644 --- a/ext/pdo_mysql/tests/common.phpt +++ b/ext/pdo_mysql/tests/common.phpt @@ -1,7 +1,7 @@ --TEST-- MySQL --SKIPIF-- - --REDIRECTTEST-- diff --git a/ext/pdo_mysql/tests/pdo_mysql_stmt_getcolumnmeta.phpt b/ext/pdo_mysql/tests/pdo_mysql_stmt_getcolumnmeta.phpt index 82806ce479..10ccba2291 100644 --- a/ext/pdo_mysql/tests/pdo_mysql_stmt_getcolumnmeta.phpt +++ b/ext/pdo_mysql/tests/pdo_mysql_stmt_getcolumnmeta.phpt @@ -1,7 +1,7 @@ --TEST-- MySQL: PDOStatement->getColumnMeta() --SKIPIF-- - --REDIRECTTEST-- # magic auto-configuration diff --git a/ext/pdo_oci/tests/pdo_oci_stmt_getcolumnmeta.phpt b/ext/pdo_oci/tests/pdo_oci_stmt_getcolumnmeta.phpt index 475b2b1798..a973e9524f 100755 --- a/ext/pdo_oci/tests/pdo_oci_stmt_getcolumnmeta.phpt +++ b/ext/pdo_oci/tests/pdo_oci_stmt_getcolumnmeta.phpt @@ -1,7 +1,7 @@ --TEST-- PDO_OCI: PDOStatement->getColumnMeta --SKIPIF-- - --FILE-- diff --git a/ext/pdo_pgsql/config.m4 b/ext/pdo_pgsql/config.m4 index 523127de3d..ad7bb91222 100644 --- a/ext/pdo_pgsql/config.m4 +++ b/ext/pdo_pgsql/config.m4 @@ -1,5 +1,4 @@ dnl config.m4 for extension pdo_pgsql -dnl vim:et:sw=2:ts=2: PHP_ARG_WITH(pdo-pgsql,for PostgreSQL support for PDO, [ --with-pdo-pgsql[=DIR] PDO: PostgreSQL support. DIR is the PostgreSQL base diff --git a/ext/pdo_pgsql/pdo_pgsql.c b/ext/pdo_pgsql/pdo_pgsql.c index 6338ee7ebd..a27c1e85e7 100644 --- a/ext/pdo_pgsql/pdo_pgsql.c +++ b/ext/pdo_pgsql/pdo_pgsql.c @@ -110,12 +110,3 @@ PHP_MINFO_FUNCTION(pdo_pgsql) php_info_print_table_end(); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_pgsql/pgsql_driver.c b/ext/pdo_pgsql/pgsql_driver.c index aa4a969ad2..e61e82c642 100644 --- a/ext/pdo_pgsql/pgsql_driver.c +++ b/ext/pdo_pgsql/pgsql_driver.c @@ -1263,12 +1263,3 @@ const pdo_driver_t pdo_pgsql_driver = { PDO_DRIVER_HEADER(pgsql), pdo_pgsql_handle_factory }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_pgsql/pgsql_statement.c b/ext/pdo_pgsql/pgsql_statement.c index dd30b58dac..107eceaa4b 100644 --- a/ext/pdo_pgsql/pgsql_statement.c +++ b/ext/pdo_pgsql/pgsql_statement.c @@ -727,12 +727,3 @@ const struct pdo_stmt_methods pgsql_stmt_methods = { NULL, /* next_rowset */ pdo_pgsql_stmt_cursor_closer }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_pgsql/php_pdo_pgsql.h b/ext/pdo_pgsql/php_pdo_pgsql.h index 31a4880d53..e6d7c17058 100644 --- a/ext/pdo_pgsql/php_pdo_pgsql.h +++ b/ext/pdo_pgsql/php_pdo_pgsql.h @@ -36,13 +36,3 @@ PHP_MSHUTDOWN_FUNCTION(pdo_pgsql); PHP_MINFO_FUNCTION(pdo_pgsql); #endif /* PHP_PDO_PGSQL_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_pgsql/php_pdo_pgsql_int.h b/ext/pdo_pgsql/php_pdo_pgsql_int.h index 225bc18131..9b1f60549f 100644 --- a/ext/pdo_pgsql/php_pdo_pgsql_int.h +++ b/ext/pdo_pgsql/php_pdo_pgsql_int.h @@ -110,12 +110,3 @@ php_stream *pdo_pgsql_create_lob_stream(zval *pdh, int lfd, Oid oid); extern const php_stream_ops pdo_pgsql_lob_stream_ops; #endif /* PHP_PDO_PGSQL_INT_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/pdo_pgsql/tests/bug68199.phpt b/ext/pdo_pgsql/tests/bug68199.phpt index 9abfba2b8e..b27d3ecf9d 100644 --- a/ext/pdo_pgsql/tests/bug68199.phpt +++ b/ext/pdo_pgsql/tests/bug68199.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #68199 (PDO::pgsqlGetNotify doesn't support NOTIFY payloads) --SKIPIF-- - --REDIRECTTEST-- # magic auto-configuration diff --git a/ext/pdo_pgsql/tests/config.inc b/ext/pdo_pgsql/tests/config.inc index 4fcfa47063..0fefe4664b 100644 --- a/ext/pdo_pgsql/tests/config.inc +++ b/ext/pdo_pgsql/tests/config.inc @@ -1,4 +1,4 @@ - --FILE-- diff --git a/ext/pdo_sqlite/tests/bug35336.phpt b/ext/pdo_sqlite/tests/bug35336.phpt index 1f9fda12b6..201429bc4e 100644 --- a/ext/pdo_sqlite/tests/bug35336.phpt +++ b/ext/pdo_sqlite/tests/bug35336.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #35336 (crash on PDO::FETCH_CLASS + __set()) --SKIPIF-- - --FILE-- diff --git a/ext/pdo_sqlite/tests/bug46542.phpt b/ext/pdo_sqlite/tests/bug46542.phpt index 2de0c05191..d324270f2a 100644 --- a/ext/pdo_sqlite/tests/bug46542.phpt +++ b/ext/pdo_sqlite/tests/bug46542.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #46542 Extending PDO class with a __call() function --SKIPIF-- - --FILE-- diff --git a/ext/pdo_sqlite/tests/bug52487.phpt b/ext/pdo_sqlite/tests/bug52487.phpt index fc65bd3b60..4861f6204f 100644 --- a/ext/pdo_sqlite/tests/bug52487.phpt +++ b/ext/pdo_sqlite/tests/bug52487.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #52487 (PDO::FETCH_INTO leaks memory) --SKIPIF-- - --FILE-- diff --git a/ext/pdo_sqlite/tests/common.phpt b/ext/pdo_sqlite/tests/common.phpt index da28d91950..9c07a5dc38 100644 --- a/ext/pdo_sqlite/tests/common.phpt +++ b/ext/pdo_sqlite/tests/common.phpt @@ -1,7 +1,7 @@ --TEST-- SQLite --SKIPIF-- - --REDIRECTTEST-- return array( diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 01381fc0a1..03669de088 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -7194,12 +7194,3 @@ PHP_FUNCTION(pg_select) /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/phar/dirstream.c b/ext/phar/dirstream.c index 985f0f6db0..ba06fcea63 100644 --- a/ext/phar/dirstream.c +++ b/ext/phar/dirstream.c @@ -666,12 +666,3 @@ int phar_wrapper_rmdir(php_stream_wrapper *wrapper, const char *url, int options return 1; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/dirstream.h b/ext/phar/dirstream.h index c6ff4b161d..fa512183f7 100644 --- a/ext/phar/dirstream.h +++ b/ext/phar/dirstream.h @@ -34,12 +34,3 @@ static int phar_dir_seek( php_stream *stream, zend_off_t offset, int whence, php_stream* phar_wrapper_open_dir(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_string **opened_path, php_stream_context *context STREAMS_DC); #endif END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/func_interceptors.c b/ext/phar/func_interceptors.c index 4531c710f8..210d079471 100644 --- a/ext/phar/func_interceptors.c +++ b/ext/phar/func_interceptors.c @@ -1155,12 +1155,3 @@ void phar_restore_orig_functions(void) /* {{{ */ PHAR_G(orig_stat) = phar_orig_functions.orig_stat; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/func_interceptors.h b/ext/phar/func_interceptors.h index 93294231c7..8bbfaae5c3 100644 --- a/ext/phar/func_interceptors.h +++ b/ext/phar/func_interceptors.h @@ -25,12 +25,3 @@ void phar_intercept_functions_shutdown(void); void phar_save_orig_functions(void); void phar_restore_orig_functions(void); END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/phar.c b/ext/phar/phar.c index 2762096cfb..85194e7dc7 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -3637,12 +3637,3 @@ zend_module_entry phar_module_entry = { STANDARD_MODULE_PROPERTIES_EX }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/phar_internal.h b/ext/phar/phar_internal.h index f4dcaead46..dd44b209aa 100644 --- a/ext/phar/phar_internal.h +++ b/ext/phar/phar_internal.h @@ -606,12 +606,3 @@ typedef enum { phar_path_check_result phar_path_check(char **p, size_t *len, const char **error); END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c index cd15e519e0..ff863d20d7 100644 --- a/ext/phar/phar_object.c +++ b/ext/phar/phar_object.c @@ -5435,12 +5435,3 @@ void phar_object_init(void) /* {{{ */ REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "SHA512", PHAR_SIG_SHA512) } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/pharzip.h b/ext/phar/pharzip.h index 37bdf28db5..100de6f436 100644 --- a/ext/phar/pharzip.h +++ b/ext/phar/pharzip.h @@ -231,11 +231,3 @@ typedef struct _phar_zip_dir_end { char comment_len[2]; /* .ZIP file comment length 2 bytes */ /* .ZIP file comment (variable size) */ } phar_zip_dir_end; -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/php_phar.h b/ext/phar/php_phar.h index 0a76ae3f5e..c9c28ef28e 100644 --- a/ext/phar/php_phar.h +++ b/ext/phar/php_phar.h @@ -35,13 +35,3 @@ extern zend_module_entry phar_module_entry; PHP_PHAR_API int phar_resolve_alias(char *alias, size_t alias_len, char **filename, size_t *filename_len); #endif /* PHP_PHAR_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/stream.c b/ext/phar/stream.c index 8f0db6ed65..c5d2cffba1 100644 --- a/ext/phar/stream.c +++ b/ext/phar/stream.c @@ -967,12 +967,3 @@ static int phar_wrapper_rename(php_stream_wrapper *wrapper, const char *url_from return 1; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/stream.h b/ext/phar/stream.h index 5472d559ac..54f6c0e428 100644 --- a/ext/phar/stream.h +++ b/ext/phar/stream.h @@ -35,12 +35,3 @@ static int phar_stream_flush(php_stream *stream); static int phar_stream_seek( php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset); static int phar_stream_stat( php_stream *stream, php_stream_statbuf *ssb); END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/tar.c b/ext/phar/tar.c index bce66f0c3b..426944c5ea 100644 --- a/ext/phar/tar.c +++ b/ext/phar/tar.c @@ -1359,12 +1359,3 @@ nostub: return EOF; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/util.c b/ext/phar/util.c index 6af4879c2d..24ecb56030 100644 --- a/ext/phar/util.c +++ b/ext/phar/util.c @@ -2088,12 +2088,3 @@ int phar_copy_on_write(phar_archive_data **pphar) /* {{{ */ return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/phar/zip.c b/ext/phar/zip.c index bbafd8836e..93b867e6e1 100644 --- a/ext/phar/zip.c +++ b/ext/phar/zip.c @@ -1533,12 +1533,3 @@ nocentralerror: return EOF; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/posix/posix.c b/ext/posix/posix.c index b07abf81e4..3e72304394 100644 --- a/ext/posix/posix.c +++ b/ext/posix/posix.c @@ -1474,12 +1474,3 @@ PHP_FUNCTION(posix_initgroups) } /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/pspell/pspell.c b/ext/pspell/pspell.c index 6208f37884..4e5e34e6b5 100644 --- a/ext/pspell/pspell.c +++ b/ext/pspell/pspell.c @@ -915,12 +915,3 @@ static PHP_MINFO_FUNCTION(pspell) /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/readline/readline.c b/ext/readline/readline.c index 76c8c03033..70bfd275bd 100644 --- a/ext/readline/readline.c +++ b/ext/readline/readline.c @@ -662,10 +662,3 @@ PHP_FUNCTION(readline_on_new_line) #endif /* HAVE_LIBREADLINE */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/readline/readline_cli.c b/ext/readline/readline_cli.c index e13111e489..f55de8e4f9 100644 --- a/ext/readline/readline_cli.c +++ b/ext/readline/readline_cli.c @@ -795,12 +795,3 @@ PHP_MINFO_FUNCTION(cli_readline) DISPLAY_INI_ENTRIES(); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/recode/recode.c b/ext/recode/recode.c index 74bd2aea6a..5330a6e20a 100644 --- a/ext/recode/recode.c +++ b/ext/recode/recode.c @@ -230,10 +230,3 @@ error_exit: /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index ac31f9e5c4..b09953b897 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -6799,12 +6799,3 @@ zend_module_entry reflection_module_entry = { /* {{{ */ PHP_REFLECTION_VERSION, STANDARD_MODULE_PROPERTIES }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: noet sw=4 ts=4 fdm=marker - */ diff --git a/ext/reflection/php_reflection.h b/ext/reflection/php_reflection.h index 9619c94df3..82dacb5501 100644 --- a/ext/reflection/php_reflection.h +++ b/ext/reflection/php_reflection.h @@ -49,11 +49,3 @@ PHPAPI void zend_reflection_class_factory(zend_class_entry *ce, zval *object); END_EXTERN_C() #endif /* PHP_REFLECTION_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c index ef1e074f22..552d990fe3 100644 --- a/ext/session/mod_files.c +++ b/ext/session/mod_files.c @@ -713,12 +713,3 @@ PS_VALIDATE_SID_FUNC(files) return ps_files_key_exists(data, ZSTR_VAL(key)); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/session/mod_mm.c b/ext/session/mod_mm.c index 4033fc1df3..93cfde7633 100644 --- a/ext/session/mod_mm.c +++ b/ext/session/mod_mm.c @@ -493,12 +493,3 @@ PS_CREATE_SID_FUNC(mm) } #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/session/mod_user.c b/ext/session/mod_user.c index c39971f134..c899fe2901 100644 --- a/ext/session/mod_user.c +++ b/ext/session/mod_user.c @@ -266,12 +266,3 @@ PS_UPDATE_TIMESTAMP_FUNC(user) FINISH; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/session/session.c b/ext/session/session.c index 90e4a026d3..f8f375d888 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -3357,12 +3357,3 @@ ZEND_TSRMLS_CACHE_DEFINE() #endif ZEND_GET_MODULE(session) #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/shmop/php_shmop.h b/ext/shmop/php_shmop.h index cd17017103..1aafa6c6f4 100644 --- a/ext/shmop/php_shmop.h +++ b/ext/shmop/php_shmop.h @@ -68,11 +68,3 @@ typedef struct { #endif #endif /* PHP_SHMOP_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/shmop/shmop.c b/ext/shmop/shmop.c index 89e2380f60..8a4c0b8763 100644 --- a/ext/shmop/shmop.c +++ b/ext/shmop/shmop.c @@ -359,12 +359,3 @@ PHP_FUNCTION(shmop_delete) /* }}} */ #endif /* HAVE_SHMOP */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/simplexml/php_simplexml.h b/ext/simplexml/php_simplexml.h index cea64cdc29..c3c3c2f1b3 100644 --- a/ext/simplexml/php_simplexml.h +++ b/ext/simplexml/php_simplexml.h @@ -88,13 +88,3 @@ typedef struct { PHP_SXE_API zend_class_entry *sxe_get_element_class_entry(); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/simplexml/php_simplexml_exports.h b/ext/simplexml/php_simplexml_exports.h index 1ae01bbb6b..20e9785162 100644 --- a/ext/simplexml/php_simplexml_exports.h +++ b/ext/simplexml/php_simplexml_exports.h @@ -55,13 +55,3 @@ PHP_SXE_API void php_sxe_rewind_iterator(php_sxe_object *sxe); PHP_SXE_API void php_sxe_move_forward_iterator(php_sxe_object *sxe); #endif /* PHP_SIMPLEXML_EXPORTS_H */ - -/** - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * indent-tabs-mode: t - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c index 3bb601be82..b7eaf90de6 100644 --- a/ext/simplexml/simplexml.c +++ b/ext/simplexml/simplexml.c @@ -2745,13 +2745,3 @@ PHP_MINFO_FUNCTION(simplexml) /* }}} */ #endif - -/** - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * indent-tabs-mode: t - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/simplexml/sxe.c b/ext/simplexml/sxe.c index 4c2f42baf8..c60e37e264 100644 --- a/ext/simplexml/sxe.c +++ b/ext/simplexml/sxe.c @@ -206,12 +206,3 @@ PHP_MINIT_FUNCTION(sxe) /* {{{ */ return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/simplexml/sxe.h b/ext/simplexml/sxe.h index 867f251c8a..6806553acc 100644 --- a/ext/simplexml/sxe.h +++ b/ext/simplexml/sxe.h @@ -27,12 +27,3 @@ extern PHP_SXE_API zend_class_entry *ce_SimpleXMLElement; PHP_MINIT_FUNCTION(sxe); #endif /* SXE_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/skeleton/php_skeleton.h b/ext/skeleton/php_skeleton.h index 35e094d661..2fa9abe545 100644 --- a/ext/skeleton/php_skeleton.h +++ b/ext/skeleton/php_skeleton.h @@ -13,4 +13,3 @@ ZEND_TSRMLS_CACHE_EXTERN() # endif #endif /* PHP_%EXTNAMECAPS%_H */ -%FOOTER% diff --git a/ext/skeleton/skeleton.c b/ext/skeleton/skeleton.c index 12c8ee4fa9..2c03ea9fd5 100644 --- a/ext/skeleton/skeleton.c +++ b/ext/skeleton/skeleton.c @@ -107,4 +107,3 @@ ZEND_TSRMLS_CACHE_DEFINE() # endif ZEND_GET_MODULE(%EXTNAME%) #endif -%FOOTER% diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index 49fd7502e5..1cf4999f33 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -2395,12 +2395,3 @@ zend_module_entry snmp_module_entry = { /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index 674f67545c..9df865b76a 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -1537,11 +1537,3 @@ static zend_string *get_http_headers(php_stream *stream) smart_str_free(&tmp_response); return NULL; } -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 8fd746ed88..c224d24759 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -4863,14 +4863,3 @@ static void delete_hashtable(void *data) /* {{{ */ efree(ht); } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/sockets/php_sockets.h b/ext/sockets/php_sockets.h index 4d22589a93..c1aba9dc98 100644 --- a/ext/sockets/php_sockets.h +++ b/ext/sockets/php_sockets.h @@ -117,10 +117,3 @@ php_socket *socket_import_file_descriptor(PHP_SOCKET sock); #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/sockets/sockets.c b/ext/sockets/sockets.c index 8a558ec938..ea8caa7298 100644 --- a/ext/sockets/sockets.c +++ b/ext/sockets/sockets.c @@ -2927,12 +2927,3 @@ PHP_FUNCTION(socket_wsaprotocol_info_release) } /* }}} */ #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/sodium/libsodium.c b/ext/sodium/libsodium.c index 104840b7d6..c70b9df9ff 100644 --- a/ext/sodium/libsodium.c +++ b/ext/sodium/libsodium.c @@ -3717,12 +3717,3 @@ PHP_FUNCTION(sodium_crypto_secretstream_xchacha20poly1305_rekey) crypto_secretstream_xchacha20poly1305_rekey((void *) state); } #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 tw=78 fdm=marker - * vim<600: sw=4 ts=4 tw=78 - */ diff --git a/ext/sodium/php_libsodium.h b/ext/sodium/php_libsodium.h index d3dcf591eb..66053f2862 100644 --- a/ext/sodium/php_libsodium.h +++ b/ext/sodium/php_libsodium.h @@ -121,12 +121,3 @@ PHP_FUNCTION(sodium_pad); PHP_FUNCTION(sodium_unpad); #endif /* PHP_LIBSODIUM_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 9ab844f746..e4e1774bd7 100644 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -1057,12 +1057,3 @@ zend_module_entry spl_module_entry = { STANDARD_MODULE_PROPERTIES_EX }; /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/php_spl.h b/ext/spl/php_spl.h index a638f468d2..69ff65f72c 100644 --- a/ext/spl/php_spl.h +++ b/ext/spl/php_spl.h @@ -73,12 +73,3 @@ PHP_FUNCTION(class_uses); PHPAPI zend_string *php_spl_object_hash(zval *obj); #endif /* PHP_SPL_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index 51329ac982..1198885505 100644 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -1985,12 +1985,3 @@ PHP_MINIT_FUNCTION(spl_array) return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_array.h b/ext/spl/spl_array.h index b6e982142a..ed5dec3e62 100644 --- a/ext/spl/spl_array.h +++ b/ext/spl/spl_array.h @@ -33,12 +33,3 @@ extern void spl_array_iterator_append(zval *object, zval *append_value); extern void spl_array_iterator_key(zval *object, zval *return_value); #endif /* SPL_ARRAY_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_directory.c b/ext/spl/spl_directory.c index 84253237e7..9f69ddba1e 100644 --- a/ext/spl/spl_directory.c +++ b/ext/spl/spl_directory.c @@ -3175,12 +3175,3 @@ PHP_MINIT_FUNCTION(spl_directory) return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_directory.h b/ext/spl/spl_directory.h index e8c267e1bb..90e8945a16 100644 --- a/ext/spl/spl_directory.h +++ b/ext/spl/spl_directory.h @@ -147,12 +147,3 @@ static inline spl_filesystem_object* spl_filesystem_iterator_to_object(spl_files #define SPL_FILE_DIR_OTHERS_MASK 0x00003000 /* mask used for get/setFlags */ #endif /* SPL_DIRECTORY_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_dllist.c b/ext/spl/spl_dllist.c index 4f96777ea6..2a274595f3 100644 --- a/ext/spl/spl_dllist.c +++ b/ext/spl/spl_dllist.c @@ -1412,12 +1412,3 @@ PHP_MINIT_FUNCTION(spl_dllist) /* {{{ */ return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_dllist.h b/ext/spl/spl_dllist.h index 66c32a5866..3f53864d25 100644 --- a/ext/spl/spl_dllist.h +++ b/ext/spl/spl_dllist.h @@ -29,12 +29,3 @@ extern PHPAPI zend_class_entry *spl_ce_SplStack; PHP_MINIT_FUNCTION(spl_dllist); #endif /* SPL_DLLIST_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_engine.c b/ext/spl/spl_engine.c index fdc400fbb6..7bedefe2c4 100644 --- a/ext/spl/spl_engine.c +++ b/ext/spl/spl_engine.c @@ -66,12 +66,3 @@ try_again: return -1; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_engine.h b/ext/spl/spl_engine.h index aa62d7f5e4..c5614a691d 100644 --- a/ext/spl/spl_engine.h +++ b/ext/spl/spl_engine.h @@ -76,12 +76,3 @@ static inline void spl_instantiate_arg_n(zend_class_entry *pce, zval *retval, in /* }}} */ #endif /* SPL_ENGINE_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_exceptions.c b/ext/spl/spl_exceptions.c index cb79344238..abe70c2b34 100644 --- a/ext/spl/spl_exceptions.c +++ b/ext/spl/spl_exceptions.c @@ -68,12 +68,3 @@ PHP_MINIT_FUNCTION(spl_exceptions) return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_exceptions.h b/ext/spl/spl_exceptions.h index 6399f530f1..2c36287bbb 100644 --- a/ext/spl/spl_exceptions.h +++ b/ext/spl/spl_exceptions.h @@ -40,12 +40,3 @@ extern PHPAPI zend_class_entry *spl_ce_UnexpectedValueException; PHP_MINIT_FUNCTION(spl_exceptions); #endif /* SPL_EXCEPTIONS_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_fixedarray.c b/ext/spl/spl_fixedarray.c index 0239f71467..71548abf16 100644 --- a/ext/spl/spl_fixedarray.c +++ b/ext/spl/spl_fixedarray.c @@ -1091,13 +1091,3 @@ PHP_MINIT_FUNCTION(spl_fixedarray) return SUCCESS; } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_fixedarray.h b/ext/spl/spl_fixedarray.h index b15413735b..9be62d4b89 100644 --- a/ext/spl/spl_fixedarray.h +++ b/ext/spl/spl_fixedarray.h @@ -25,12 +25,3 @@ extern PHPAPI zend_class_entry *spl_ce_SplFixedArray; PHP_MINIT_FUNCTION(spl_fixedarray); #endif /* SPL_FIXEDARRAY_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_functions.c b/ext/spl/spl_functions.c index 6ae272727b..74d7e75667 100644 --- a/ext/spl/spl_functions.c +++ b/ext/spl/spl_functions.c @@ -142,12 +142,3 @@ zend_string * spl_gen_private_prop_name(zend_class_entry *ce, char *prop_name, i return zend_mangle_property_name(ZSTR_VAL(ce->name), ZSTR_LEN(ce->name), prop_name, prop_len, 0); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_functions.h b/ext/spl/spl_functions.h index dc85ab84ff..2b9ff7890d 100644 --- a/ext/spl/spl_functions.h +++ b/ext/spl/spl_functions.h @@ -78,12 +78,3 @@ zend_string *spl_gen_private_prop_name(zend_class_entry *ce, char *prop_name, in #define SPL_MA(class_name, function_name, alias_class, alias_function, arg_info, flags) \ PHP_MALIAS(spl_ ## alias_class, function_name, alias_function, arg_info, flags) #endif /* PHP_FUNCTIONS_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_heap.c b/ext/spl/spl_heap.c index a0cbd41560..aad9ed4f36 100644 --- a/ext/spl/spl_heap.c +++ b/ext/spl/spl_heap.c @@ -1244,12 +1244,3 @@ PHP_MINIT_FUNCTION(spl_heap) /* {{{ */ return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_heap.h b/ext/spl/spl_heap.h index c8227ccde9..d73fca545e 100644 --- a/ext/spl/spl_heap.h +++ b/ext/spl/spl_heap.h @@ -31,12 +31,3 @@ extern PHPAPI zend_class_entry *spl_ce_SplPriorityQueue; PHP_MINIT_FUNCTION(spl_heap); #endif /* SPL_HEAP_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_iterators.c b/ext/spl/spl_iterators.c index dd3d8d084a..5cddf4d460 100644 --- a/ext/spl/spl_iterators.c +++ b/ext/spl/spl_iterators.c @@ -3774,12 +3774,3 @@ PHP_MINIT_FUNCTION(spl_iterators) return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_iterators.h b/ext/spl/spl_iterators.h index cb8e454254..4e314eb203 100644 --- a/ext/spl/spl_iterators.h +++ b/ext/spl/spl_iterators.h @@ -176,12 +176,3 @@ typedef int (*spl_iterator_apply_func_t)(zend_object_iterator *iter, void *puser PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser); #endif /* SPL_ITERATORS_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_observer.c b/ext/spl/spl_observer.c index 72fa507938..8b170afaee 100644 --- a/ext/spl/spl_observer.c +++ b/ext/spl/spl_observer.c @@ -1267,12 +1267,3 @@ PHP_MINIT_FUNCTION(spl_observer) return SUCCESS; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/spl_observer.h b/ext/spl/spl_observer.h index 26a8cd6eec..50d65f63ab 100644 --- a/ext/spl/spl_observer.h +++ b/ext/spl/spl_observer.h @@ -30,12 +30,3 @@ extern PHPAPI zend_class_entry *spl_ce_MultipleIterator; PHP_MINIT_FUNCTION(spl_observer); #endif /* SPL_OBSERVER_H */ - -/* - * Local Variables: - * c-basic-offset: 4 - * tab-width: 4 - * End: - * vim600: fdm=marker - * vim: noet sw=4 ts=4 - */ diff --git a/ext/spl/tests/bug38618.phpt b/ext/spl/tests/bug38618.phpt index 95a3da83cc..097d169a98 100644 --- a/ext/spl/tests/bug38618.phpt +++ b/ext/spl/tests/bug38618.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #38618 (RecursiveArrayIterator::hasChildren() follows objects) --FILE-- - diff --git a/ext/standard/tests/general_functions/proc_open-mb1.phpt b/ext/standard/tests/general_functions/proc_open-mb1.phpt index 7787b7aff1..2b922917f3 100644 --- a/ext/standard/tests/general_functions/proc_open-mb1.phpt +++ b/ext/standard/tests/general_functions/proc_open-mb1.phpt @@ -1,7 +1,7 @@ --TEST-- proc_open without bypass_shell subprocess parameter passing --SKIPIF-- - diff --git a/ext/standard/tests/general_functions/proc_open.phpt b/ext/standard/tests/general_functions/proc_open.phpt index ecf8d8ad79..4d0a21d165 100644 --- a/ext/standard/tests/general_functions/proc_open.phpt +++ b/ext/standard/tests/general_functions/proc_open.phpt @@ -1,7 +1,7 @@ --TEST-- proc_open --SKIPIF-- - diff --git a/ext/standard/tests/math/bug21523.phpt b/ext/standard/tests/math/bug21523.phpt index 7589c401e3..20616b10b3 100644 --- a/ext/standard/tests/math/bug21523.phpt +++ b/ext/standard/tests/math/bug21523.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #21523 (number_format tries to allocate negative amount of memory) --FILE-- - ".round($v, 2)."\n"; diff --git a/ext/standard/tests/network/bug20134.phpt b/ext/standard/tests/network/bug20134.phpt index e311f892f7..8d97f5f6e8 100644 --- a/ext/standard/tests/network/bug20134.phpt +++ b/ext/standard/tests/network/bug20134.phpt @@ -2,7 +2,7 @@ Bug #20134 (UDP reads from invalid ports) --FILE-- diff --git a/ext/standard/tests/network/udp6loop.phpt b/ext/standard/tests/network/udp6loop.phpt index 8241d80bac..3b70f43119 100644 --- a/ext/standard/tests/network/udp6loop.phpt +++ b/ext/standard/tests/network/udp6loop.phpt @@ -1,7 +1,7 @@ --TEST-- Streams Based IPv6 UDP Loopback test --SKIPIF-- - diff --git a/ext/standard/type.c b/ext/standard/type.c index 59247eeedb..c3d20a340c 100644 --- a/ext/standard/type.c +++ b/ext/standard/type.c @@ -411,12 +411,3 @@ PHP_FUNCTION(is_countable) RETURN_BOOL(zend_is_countable(var)); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/standard/uniqid.c b/ext/standard/uniqid.c index 1d0c346419..97a886c592 100644 --- a/ext/standard/uniqid.c +++ b/ext/standard/uniqid.c @@ -84,12 +84,3 @@ PHP_FUNCTION(uniqid) } #endif /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/standard/url.c b/ext/standard/url.c index bc4a24511d..ff70ea4e04 100644 --- a/ext/standard/url.c +++ b/ext/standard/url.c @@ -726,12 +726,3 @@ no_name_header: php_stream_close(stream); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/standard/url.h b/ext/standard/url.h index f3e3707bfe..782fe65e6a 100644 --- a/ext/standard/url.h +++ b/ext/standard/url.h @@ -59,10 +59,3 @@ PHP_FUNCTION(get_headers); #define PHP_QUERY_RFC3986 2 #endif /* URL_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ diff --git a/ext/standard/user_filters.c b/ext/standard/user_filters.c index 44ce16b337..34e877707c 100644 --- a/ext/standard/user_filters.c +++ b/ext/standard/user_filters.c @@ -591,13 +591,3 @@ PHP_FUNCTION(stream_filter_register) } } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/standard/uuencode.c b/ext/standard/uuencode.c index d21ed0034c..bfe605a49b 100644 --- a/ext/standard/uuencode.c +++ b/ext/standard/uuencode.c @@ -231,12 +231,3 @@ PHP_FUNCTION(convert_uudecode) RETURN_STR(dest); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/ext/standard/var.c b/ext/standard/var.c index 9a61fa82ee..5bf2923561 100644 --- a/ext/standard/var.c +++ b/ext/standard/var.c @@ -1211,12 +1211,3 @@ PHP_FUNCTION(memory_get_peak_usage) { RETURN_LONG(zend_memory_peak_usage(real_usage)); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/standard/versioning.c b/ext/standard/versioning.c index 3273215091..e4353130d6 100644 --- a/ext/standard/versioning.c +++ b/ext/standard/versioning.c @@ -243,11 +243,3 @@ PHP_FUNCTION(version_compare) } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/sysvmsg/php_sysvmsg.h b/ext/sysvmsg/php_sysvmsg.h index 4cb9d12da4..af5e1da9ab 100644 --- a/ext/sysvmsg/php_sysvmsg.h +++ b/ext/sysvmsg/php_sysvmsg.h @@ -30,12 +30,3 @@ extern zend_module_entry sysvmsg_module_entry; #endif /* HAVE_SYSVMSG */ #endif /* PHP_SYSVMSG_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ diff --git a/ext/sysvmsg/sysvmsg.c b/ext/sysvmsg/sysvmsg.c index 1cf77fd6fe..12bc41aadd 100644 --- a/ext/sysvmsg/sysvmsg.c +++ b/ext/sysvmsg/sysvmsg.c @@ -491,12 +491,3 @@ PHP_FUNCTION(msg_send) } } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 tw=78 fdm=marker - * vim<600: noet sw=4 ts=4 tw=78 - */ diff --git a/ext/sysvmsg/tests/001.phpt b/ext/sysvmsg/tests/001.phpt index 666ad274e2..5096033bb1 100644 --- a/ext/sysvmsg/tests/001.phpt +++ b/ext/sysvmsg/tests/001.phpt @@ -1,7 +1,7 @@ --TEST-- send/receive serialized message. --SKIPIF-- - --FILE-- run(); } -// vim600: sts=4 sw=4 ts=4 encoding=UTF-8 ?> --EXPECTF-- libxml2 Version => %s diff --git a/ext/xml/tests/bug32001b.phpt b/ext/xml/tests/bug32001b.phpt index 21c20e40de..3a3c11a3ba 100644 --- a/ext/xml/tests/bug32001b.phpt +++ b/ext/xml/tests/bug32001b.phpt @@ -104,7 +104,6 @@ foreach ($suite as $testcase) { $testcase->run(); } -// vim600: sts=4 sw=4 ts=4 encoding=UTF-8 ?> --EXPECTF-- libxml2 Version => %s diff --git a/ext/xml/tests/xml007.phpt b/ext/xml/tests/xml007.phpt index 1b2510591c..f19f0389b6 100644 --- a/ext/xml/tests/xml007.phpt +++ b/ext/xml/tests/xml007.phpt @@ -1,7 +1,7 @@ --TEST-- xml_parse_into_struct/umlauts in tags --SKIPIF-- - --FILE-- --FILE-- notifier) {\ php_stream_notification_notify((context), (code), PHP_STREAM_NOTIFY_SEVERITY_ERR, \ (xmsg), (xcode), 0, 0, NULL); } } while(0) - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/main/streams/php_stream_filter_api.h b/main/streams/php_stream_filter_api.h index f76301c2b6..4d5760e2cf 100644 --- a/main/streams/php_stream_filter_api.h +++ b/main/streams/php_stream_filter_api.h @@ -149,12 +149,3 @@ PHPAPI int php_stream_filter_unregister_factory(const char *filterpattern); PHPAPI int php_stream_filter_register_factory_volatile(zend_string *filterpattern, const php_stream_filter_factory *factory); PHPAPI php_stream_filter *php_stream_filter_create(const char *filtername, zval *filterparams, uint8_t persistent); END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/main/streams/php_stream_glob_wrapper.h b/main/streams/php_stream_glob_wrapper.h index a255719b3f..31ba5b2ca0 100644 --- a/main/streams/php_stream_glob_wrapper.h +++ b/main/streams/php_stream_glob_wrapper.h @@ -31,12 +31,3 @@ PHPAPI int _php_glob_stream_get_count(php_stream *stream, int *pflags STREAMS_ #define php_glob_stream_get_count(stream, pflags) _php_glob_stream_get_count((stream), (pflags) STREAMS_CC) END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/main/streams/php_stream_mmap.h b/main/streams/php_stream_mmap.h index 0357e2403b..132f3214c1 100644 --- a/main/streams/php_stream_mmap.h +++ b/main/streams/php_stream_mmap.h @@ -75,12 +75,3 @@ PHPAPI int _php_stream_mmap_unmap(php_stream *stream); PHPAPI int _php_stream_mmap_unmap_ex(php_stream *stream, zend_off_t readden); #define php_stream_mmap_unmap_ex(stream, readden) _php_stream_mmap_unmap_ex((stream), (readden)) END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/main/streams/php_stream_plain_wrapper.h b/main/streams/php_stream_plain_wrapper.h index ac2dabf7f7..4af8b86cdd 100644 --- a/main/streams/php_stream_plain_wrapper.h +++ b/main/streams/php_stream_plain_wrapper.h @@ -56,12 +56,3 @@ PHPAPI FILE * _php_stream_open_wrapper_as_file(char * path, char * mode, int opt PHPAPI int php_stream_parse_fopen_modes(const char *mode, int *open_flags); END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/main/streams/php_stream_transport.h b/main/streams/php_stream_transport.h index cbbaf091bd..a73966ec33 100644 --- a/main/streams/php_stream_transport.h +++ b/main/streams/php_stream_transport.h @@ -214,12 +214,3 @@ BEGIN_EXTERN_C() PHPAPI HashTable *php_stream_xport_get_hash(void); PHPAPI php_stream_transport_factory_func php_stream_generic_socket_factory; END_EXTERN_C() - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/main/streams/php_stream_userspace.h b/main/streams/php_stream_userspace.h index c09ff9033a..389d591921 100644 --- a/main/streams/php_stream_userspace.h +++ b/main/streams/php_stream_userspace.h @@ -21,12 +21,3 @@ PHPAPI extern const php_stream_ops php_stream_userspace_ops; PHPAPI extern const php_stream_ops php_stream_userspace_dir_ops; #define PHP_STREAM_IS_USERSPACE &php_stream_userspace_ops #define PHP_STREAM_IS_USERSPACE_DIR &php_stream_userspace_dir_ops - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/main/streams/plain_wrapper.c b/main/streams/plain_wrapper.c index bb777b8e65..6ac47b25fd 100644 --- a/main/streams/plain_wrapper.c +++ b/main/streams/plain_wrapper.c @@ -1600,12 +1600,3 @@ stream_skip: } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/main/streams/streams.c b/main/streams/streams.c index 7c8d0ac906..f418991bad 100644 --- a/main/streams/streams.c +++ b/main/streams/streams.c @@ -2290,12 +2290,3 @@ PHPAPI int _php_stream_scandir(const char *dirname, zend_string **namelist[], in return nfiles; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/main/streams/transports.c b/main/streams/transports.c index 05dbdcad60..74fbef58d8 100644 --- a/main/streams/transports.c +++ b/main/streams/transports.c @@ -512,12 +512,3 @@ PHPAPI int php_stream_xport_shutdown(php_stream *stream, stream_shutdown_t how) } return -1; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/main/streams/xp_socket.c b/main/streams/xp_socket.c index b7770c842d..f79fa16d5f 100644 --- a/main/streams/xp_socket.c +++ b/main/streams/xp_socket.c @@ -925,13 +925,3 @@ PHPAPI php_stream *php_stream_generic_socket_factory(const char *proto, size_t p return stream; } - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/main/strlcat.c b/main/strlcat.c index 4d0e0e6142..6ef5644568 100644 --- a/main/strlcat.c +++ b/main/strlcat.c @@ -94,12 +94,3 @@ PHPAPI size_t php_strlcat(dst, src, siz) } #endif /* !HAVE_STRLCAT */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/main/strlcpy.c b/main/strlcpy.c index 82436e1d1f..31e13489d8 100644 --- a/main/strlcpy.c +++ b/main/strlcpy.c @@ -94,12 +94,3 @@ PHPAPI size_t php_strlcpy(dst, src, siz) } #endif /* !HAVE_STRLCPY */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/php.ini-development b/php.ini-development index 0566267c2f..c6b63ebc44 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1931,7 +1931,3 @@ ldap.max_links = -1 ; "false" - always disabled ; "true" - always enabled ;ffi.enable=preload - -; Local Variables: -; tab-width: 4 -; End: diff --git a/php.ini-production b/php.ini-production index 9ae24dba2c..d2b3642b83 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1938,7 +1938,3 @@ ldap.max_links = -1 ; "false" - always disabled ; "true" - always enabled ;ffi.enable=preload - -; Local Variables: -; tab-width: 4 -; End: diff --git a/run-tests.php b/run-tests.php index f64084c438..7c135b2dd4 100755 --- a/run-tests.php +++ b/run-tests.php @@ -3054,11 +3054,3 @@ class RuntestsValgrind } } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim: noet sw=4 ts=4 - */ diff --git a/sapi/apache2handler/apache_config.c b/sapi/apache2handler/apache_config.c index a6831d2ca0..d0913c250e 100644 --- a/sapi/apache2handler/apache_config.c +++ b/sapi/apache2handler/apache_config.c @@ -233,12 +233,3 @@ void *create_php_config(apr_pool_t *p, char *dummy) apr_pool_cleanup_register(p, newx, destroy_php_config, apr_pool_cleanup_null); return (void *) newx; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/sapi/apache2handler/config.m4 b/sapi/apache2handler/config.m4 index 44dee3fad5..1e6916f602 100644 --- a/sapi/apache2handler/config.m4 +++ b/sapi/apache2handler/config.m4 @@ -123,7 +123,3 @@ if test "$PHP_APXS2" != "no"; then else AC_MSG_RESULT(no) fi - -dnl ## Local Variables: -dnl ## tab-width: 4 -dnl ## End: diff --git a/sapi/apache2handler/mod_php7.c b/sapi/apache2handler/mod_php7.c index 1ad5934c34..6c44dbaa2c 100644 --- a/sapi/apache2handler/mod_php7.c +++ b/sapi/apache2handler/mod_php7.c @@ -32,12 +32,3 @@ AP_MODULE_DECLARE_DATA module php7_module = { php_dir_cmds, /* command apr_table_t */ php_ap2_register_hook /* register hooks */ }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/sapi/apache2handler/php_functions.c b/sapi/apache2handler/php_functions.c index 7ac9c4a2a2..84e49abf24 100644 --- a/sapi/apache2handler/php_functions.c +++ b/sapi/apache2handler/php_functions.c @@ -562,12 +562,3 @@ zend_module_entry php_apache_module = { NULL, STANDARD_MODULE_PROPERTIES }; - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c index 3f62ef9c32..1aeccb17c9 100644 --- a/sapi/apache2handler/sapi_apache2.c +++ b/sapi/apache2handler/sapi_apache2.c @@ -753,12 +753,3 @@ void php_ap2_register_hook(apr_pool_t *p) #endif ap_hook_child_init(php_apache_child_init, NULL, NULL, APR_HOOK_MIDDLE); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 1b0ff87b9c..20c14c102b 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -2781,12 +2781,3 @@ parent_out: return exit_status; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/sapi/cli/cli.h b/sapi/cli/cli.h index 2126a77582..b4c2851791 100644 --- a/sapi/cli/cli.h +++ b/sapi/cli/cli.h @@ -39,12 +39,3 @@ typedef struct { extern PHP_CLI_API cli_shell_callbacks_t *php_cli_get_shell_callbacks(); #endif /* CLI_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/sapi/cli/generate_mime_type_map.php b/sapi/cli/generate_mime_type_map.php index a0318c364b..b0176bb524 100755 --- a/sapi/cli/generate_mime_type_map.php +++ b/sapi/cli/generate_mime_type_map.php @@ -78,12 +78,3 @@ static const php_cli_server_ext_mime_type_pair mime_type_map[] = { }; #endif /* PHP_CLI_SERVER_MIME_TYPE_MAP_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/sapi/cli/mime_type_map.h b/sapi/cli/mime_type_map.h index 356c148ca8..0c559d635f 100644 --- a/sapi/cli/mime_type_map.h +++ b/sapi/cli/mime_type_map.h @@ -1017,12 +1017,3 @@ static const php_cli_server_ext_mime_type_pair mime_type_map[] = { }; #endif /* PHP_CLI_SERVER_MIME_TYPE_MAP_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 5b4023ea70..608f1b0e25 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -1422,12 +1422,3 @@ out: exit(exit_status); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/sapi/cli/php_cli_process_title.c b/sapi/cli/php_cli_process_title.c index e7f3598cb9..1b82104ca6 100644 --- a/sapi/cli/php_cli_process_title.c +++ b/sapi/cli/php_cli_process_title.c @@ -67,12 +67,3 @@ PHP_FUNCTION(cli_get_process_title) RETURN_STRINGL(title, length); } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/sapi/cli/php_cli_process_title.h b/sapi/cli/php_cli_process_title.h index 4660157467..c2fed7b817 100644 --- a/sapi/cli/php_cli_process_title.h +++ b/sapi/cli/php_cli_process_title.h @@ -30,12 +30,3 @@ PHP_FUNCTION(cli_set_process_title); PHP_FUNCTION(cli_get_process_title); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/sapi/cli/php_cli_server.c b/sapi/cli/php_cli_server.c index 54f4f0101a..e09aca4ed8 100644 --- a/sapi/cli/php_cli_server.c +++ b/sapi/cli/php_cli_server.c @@ -2609,12 +2609,3 @@ int do_cli_server(int argc, char **argv) /* {{{ */ php_cli_server_dtor(&server); return 0; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/sapi/cli/php_cli_server.h b/sapi/cli/php_cli_server.h index 350053a5fd..4d57f1b922 100644 --- a/sapi/cli/php_cli_server.h +++ b/sapi/cli/php_cli_server.h @@ -37,12 +37,3 @@ ZEND_TSRMLS_CACHE_EXTERN() #endif #endif /* PHP_CLI_SERVER_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/sapi/embed/php_embed.c b/sapi/embed/php_embed.c index 9107a6068d..826e9bd05e 100644 --- a/sapi/embed/php_embed.c +++ b/sapi/embed/php_embed.c @@ -233,12 +233,3 @@ EMBED_SAPI_API void php_embed_shutdown(void) php_embed_module.ini_entries = NULL; } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/sapi/fpm/fpm/fpm_main.c b/sapi/fpm/fpm/fpm_main.c index 608c2cfb7e..b492af715c 100644 --- a/sapi/fpm/fpm/fpm_main.c +++ b/sapi/fpm/fpm/fpm_main.c @@ -2009,12 +2009,3 @@ out: return exit_status; } /* }}} */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/sapi/litespeed/lsapi_main.c b/sapi/litespeed/lsapi_main.c index b4564a69f8..b7805f5f27 100644 --- a/sapi/litespeed/lsapi_main.c +++ b/sapi/litespeed/lsapi_main.c @@ -1511,13 +1511,3 @@ PHP_FUNCTION(apache_get_modules) } } /* }}} */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/sapi/phpdbg/config.m4 b/sapi/phpdbg/config.m4 index 56d4b21e0d..76162a129d 100644 --- a/sapi/phpdbg/config.m4 +++ b/sapi/phpdbg/config.m4 @@ -70,7 +70,3 @@ fi if test "$PHP_PHPDBG_WEBHELPER" != "no"; then PHP_NEW_EXTENSION(phpdbg_webhelper, phpdbg_rinit_hook.c phpdbg_webdata_transfer.c, $ext_shared) fi - -dnl ## Local Variables: -dnl ## tab-width: 4 -dnl ## End: diff --git a/win32/build/deplister.c b/win32/build/deplister.c index 007844226d..b5dd059c98 100644 --- a/win32/build/deplister.c +++ b/win32/build/deplister.c @@ -48,12 +48,3 @@ int main(int argc, char *argv[]) return BindImageEx(BIND_NO_BOUND_IMPORTS | BIND_NO_UPDATE | BIND_ALL_IMAGES, argv[1], NULL, argv[2], StatusRoutine); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/win32/codepage.c b/win32/codepage.c index b5cc59205d..839ba6d447 100644 --- a/win32/codepage.c +++ b/win32/codepage.c @@ -705,11 +705,3 @@ PHP_FUNCTION(sapi_windows_cp_conv) /* }}} */ /* }}} */ -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/codepage.h b/win32/codepage.h index 02f6c582e2..0dd72562b6 100644 --- a/win32/codepage.h +++ b/win32/codepage.h @@ -151,12 +151,3 @@ __forceinline static char *php_win32_cp_conv_w_to_any(const wchar_t* in, size_t #endif #endif /* PHP_WIN32_CODEPAGE_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/console.c b/win32/console.c index 6e8d730ad0..27dbd4548d 100644 --- a/win32/console.c +++ b/win32/console.c @@ -108,12 +108,3 @@ PHP_WINUTIL_API BOOL php_win32_console_is_own(void) return FALSE; }/*}}}*/ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/console.h b/win32/console.h index 66007d0b98..5e50eef8b1 100644 --- a/win32/console.h +++ b/win32/console.h @@ -60,12 +60,3 @@ PHP_WINUTIL_API BOOL php_win32_console_fileno_set_vt100(zend_long fileno, BOOL e PHP_WINUTIL_API BOOL php_win32_console_is_own(void); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/cp_enc_map_gen.c b/win32/cp_enc_map_gen.c index 34861d148b..bd2f108287 100644 --- a/win32/cp_enc_map_gen.c +++ b/win32/cp_enc_map_gen.c @@ -246,12 +246,3 @@ main(int argc, char **argv) return 0; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/dllmain.c b/win32/dllmain.c index 6714bff25a..4743f732e9 100644 --- a/win32/dllmain.c +++ b/win32/dllmain.c @@ -86,12 +86,3 @@ BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID dummy) return ret; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/fnmatch.c b/win32/fnmatch.c index 9017b3e19c..296a1a5ca1 100644 --- a/win32/fnmatch.c +++ b/win32/fnmatch.c @@ -195,12 +195,3 @@ rangematch(const char *pattern, char test, int flags) } return (ok == negate ? NULL : pattern); } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/fnmatch.h b/win32/fnmatch.h index c149e89402..03a828d054 100644 --- a/win32/fnmatch.h +++ b/win32/fnmatch.h @@ -51,12 +51,3 @@ PHPAPI int fnmatch(const char *pattern, const char *string, int flags); #endif /* !_FNMATCH_H_ */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/ftok.c b/win32/ftok.c index f8c05b2e7a..db789f8b70 100644 --- a/win32/ftok.c +++ b/win32/ftok.c @@ -60,12 +60,3 @@ ftok(const char *pathname, int proj_id) return ret; }/*}}}*/ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/getrusage.c b/win32/getrusage.c index bab9c82925..de67f7f8d2 100644 --- a/win32/getrusage.c +++ b/win32/getrusage.c @@ -73,12 +73,3 @@ PHPAPI int getrusage(int who, struct rusage *usage) return -1; } } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/getrusage.h b/win32/getrusage.h index 8f4928d450..c41c026aa2 100644 --- a/win32/getrusage.h +++ b/win32/getrusage.h @@ -114,12 +114,3 @@ struct rusage PHPAPI int getrusage(int who, struct rusage *usage); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/glob.c b/win32/glob.c index a0845e803d..578284cb3d 100644 --- a/win32/glob.c +++ b/win32/glob.c @@ -923,12 +923,3 @@ qprintf(str, s) (void)printf("\n"); } #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/glob.h b/win32/glob.h index 946c2ecae8..42cf2f9d71 100644 --- a/win32/glob.h +++ b/win32/glob.h @@ -100,12 +100,3 @@ PHPAPI int glob(const char *, int, int (*)(const char *, int), glob_t *); PHPAPI void globfree(glob_t *); END_EXTERN_C() #endif /* !_GLOB_H_ */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/globals.c b/win32/globals.c index 20464c6c81..9bb392f42a 100644 --- a/win32/globals.c +++ b/win32/globals.c @@ -67,12 +67,3 @@ PHP_RSHUTDOWN_FUNCTION(win32_core_globals) return SUCCESS; }/*}}}*/ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/grp.h b/win32/grp.h index b25e61e3ba..301babed4e 100644 --- a/win32/grp.h +++ b/win32/grp.h @@ -27,12 +27,3 @@ struct group { }; #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/inet.c b/win32/inet.c index 47af376436..7361b89bc2 100644 --- a/win32/inet.c +++ b/win32/inet.c @@ -27,12 +27,3 @@ int inet_aton(const char *cp, struct in_addr *inp) { return 1; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/inet.h b/win32/inet.h index 460543c7cf..b57d78903d 100644 --- a/win32/inet.h +++ b/win32/inet.h @@ -25,12 +25,3 @@ PHPAPI int inet_aton(const char *cp, struct in_addr *inp); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/ioutil.c b/win32/ioutil.c index 69df638133..7288ea353a 100644 --- a/win32/ioutil.c +++ b/win32/ioutil.c @@ -1142,12 +1142,3 @@ PW32IO ssize_t php_win32_ioutil_readlink_w(const wchar_t *path, wchar_t *buf, si return ret; }/*}}}*/ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/ioutil.h b/win32/ioutil.h index 4e3f44d6ce..e2906c65e0 100644 --- a/win32/ioutil.h +++ b/win32/ioutil.h @@ -792,12 +792,3 @@ __forceinline static ssize_t php_win32_ioutil_readlink(const char *path, char *b #endif #endif /* PHP_WIN32_IOUTIL_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/ipc.h b/win32/ipc.h index 02568b6a79..c7cb476353 100644 --- a/win32/ipc.h +++ b/win32/ipc.h @@ -31,12 +31,3 @@ PHP_WIN32_IPC_API key_t ftok(const char *path, int id); #endif /* PHP_WIN32_IPC_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/nice.c b/win32/nice.c index 96f393f19a..05aae465ed 100644 --- a/win32/nice.c +++ b/win32/nice.c @@ -81,12 +81,3 @@ PHPAPI int nice(zend_long p) return 0; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/nice.h b/win32/nice.h index daadcb3157..385855c2ea 100644 --- a/win32/nice.h +++ b/win32/nice.h @@ -22,12 +22,3 @@ PHPAPI int nice(zend_long); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/param.h b/win32/param.h index 552323c5b1..b40d966d7f 100644 --- a/win32/param.h +++ b/win32/param.h @@ -19,12 +19,3 @@ #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/php_inttypes.h b/win32/php_inttypes.h index 878d13fffb..20e9c9b775 100644 --- a/win32/php_inttypes.h +++ b/win32/php_inttypes.h @@ -311,12 +311,3 @@ imaxdiv_t __cdecl imaxdiv(intmax_t numer, intmax_t denom) #else #include #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/php_registry.h b/win32/php_registry.h index df57bb8dfc..f46c482085 100644 --- a/win32/php_registry.h +++ b/win32/php_registry.h @@ -24,12 +24,3 @@ void UpdateIniFromRegistry(char *path); char *GetIniPathFromRegistry(); #endif /* PHP_REGISTRY_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/php_stdbool.h b/win32/php_stdbool.h index 5b73d985ae..cc853c59c1 100644 --- a/win32/php_stdbool.h +++ b/win32/php_stdbool.h @@ -9,12 +9,3 @@ # define __bool_true_false_are_defined 1 # endif #endif /* _STDBOOL_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/php_stdint.h b/win32/php_stdint.h index bc936bf111..e7615f1479 100644 --- a/win32/php_stdint.h +++ b/win32/php_stdint.h @@ -263,12 +263,3 @@ static __inline int64_t llabs(int64_t i) #ifndef u_char typedef unsigned __int8 u_char; #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/php_win32_globals.h b/win32/php_win32_globals.h index 113d78e431..bb91f08c50 100644 --- a/win32/php_win32_globals.h +++ b/win32/php_win32_globals.h @@ -53,12 +53,3 @@ void php_win32_core_globals_dtor(void *vg); PHP_RSHUTDOWN_FUNCTION(win32_core_globals); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/readdir.c b/win32/readdir.c index 0d46f14a77..5b63d20212 100644 --- a/win32/readdir.c +++ b/win32/readdir.c @@ -238,12 +238,3 @@ int rewinddir(DIR *dp) #ifdef __cplusplus } #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/readdir.h b/win32/readdir.h index 8e26cbadb6..a39b6d4865 100644 --- a/win32/readdir.h +++ b/win32/readdir.h @@ -48,12 +48,3 @@ int rewinddir(DIR *); #endif #endif /* READDIR_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/registry.c b/win32/registry.c index a6ded4898f..99c3ce365f 100644 --- a/win32/registry.c +++ b/win32/registry.c @@ -299,12 +299,3 @@ char *GetIniPathFromRegistry() } return reg_location; }/*}}}*/ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/resource.h b/win32/resource.h index 05e3111512..671434a225 100644 --- a/win32/resource.h +++ b/win32/resource.h @@ -18,12 +18,3 @@ #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/select.c b/win32/select.c index 0396a656cf..810130c970 100644 --- a/win32/select.c +++ b/win32/select.c @@ -164,12 +164,3 @@ PHPAPI int php_select(php_socket_t max_fd, fd_set *rfds, fd_set *wfds, fd_set *e return retcode; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/win32/select.h b/win32/select.h index eb9c1f8de0..c23eb87ddb 100644 --- a/win32/select.h +++ b/win32/select.h @@ -24,12 +24,3 @@ PHPAPI int php_select(php_socket_t max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: noet sw=4 ts=4 fdm=marker - * vim<600: noet sw=4 ts=4 - */ diff --git a/win32/sendmail.c b/win32/sendmail.c index 166e44a935..fc901308ba 100644 --- a/win32/sendmail.c +++ b/win32/sendmail.c @@ -982,12 +982,3 @@ static int FormatEmailAddress(char* Buf, char* EmailAddress, char* FormatString) } return snprintf(Buf, MAIL_BUFFER_SIZE , FormatString , EmailAddress ); } /* end FormatEmailAddress() */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/sendmail.h b/win32/sendmail.h index 47c89231cb..bb502cb7dd 100644 --- a/win32/sendmail.h +++ b/win32/sendmail.h @@ -47,12 +47,3 @@ static int Ack(char **server_response); static unsigned long GetAddr(LPSTR szHost); static int FormatEmailAddress(char* Buf, char* EmailAddress, char* FormatString); #endif /* sendmail_h */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/signal.h b/win32/signal.h index dd8c1091cc..ec739527ac 100644 --- a/win32/signal.h +++ b/win32/signal.h @@ -8,12 +8,3 @@ #define SIGPROF 27 /* profiling time alarm */ #endif /* PHP_WIN32_SIGNAL_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/sockets.c b/win32/sockets.c index 85f2ee5b13..461ce69888 100644 --- a/win32/sockets.c +++ b/win32/sockets.c @@ -88,12 +88,3 @@ error: WSASetLastError(WSAECONNABORTED); return -1; } - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/sockets.h b/win32/sockets.h index e3d4d57c50..2e693f8840 100644 --- a/win32/sockets.h +++ b/win32/sockets.h @@ -27,12 +27,3 @@ PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/syslog.h b/win32/syslog.h index 7d088efd93..5ea75d8486 100644 --- a/win32/syslog.h +++ b/win32/syslog.h @@ -75,12 +75,3 @@ extern void vsyslog(int, const char *, va_list ap); #endif /* SYSLOG_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/time.c b/win32/time.c index cd5a7affdf..d1fe51458e 100644 --- a/win32/time.c +++ b/win32/time.c @@ -117,12 +117,3 @@ PHPAPI int nanosleep( const struct timespec * rqtp, struct timespec * rmtp ) } return usleep( rqtp->tv_sec * 1000000 + rqtp->tv_nsec / 1000 ); }/*}}}*/ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/time.h b/win32/time.h index 07afae487a..51090ccfd8 100644 --- a/win32/time.h +++ b/win32/time.h @@ -61,12 +61,3 @@ void php_win32_init_gettimeofday(void); #endif #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/unistd.h b/win32/unistd.h index 3d95ea06c7..0b9446149c 100644 --- a/win32/unistd.h +++ b/win32/unistd.h @@ -2,12 +2,3 @@ #define _PHP_WIN32_UNISTD_H PHPAPI int usleep(unsigned int useconds); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/winutil.c b/win32/winutil.c index e658a21d13..cb962fb537 100644 --- a/win32/winutil.c +++ b/win32/winutil.c @@ -433,12 +433,3 @@ PHP_WINUTIL_API char *php_win32_get_username(void) return uname; }/*}}}*/ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/winutil.h b/win32/winutil.h index f7f23a8599..2899a71292 100644 --- a/win32/winutil.h +++ b/win32/winutil.h @@ -56,12 +56,3 @@ PHP_WINUTIL_API int php_win32_code_to_errno(unsigned long w32Err); PHP_WINUTIL_API char *php_win32_get_username(void); #endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/win32/wsyslog.c b/win32/wsyslog.c index 695c7db8cd..50a34fabf0 100644 --- a/win32/wsyslog.c +++ b/win32/wsyslog.c @@ -150,11 +150,3 @@ void openlog(const char *ident, int logopt, int facility) PW32G(log_header) = malloc(header_len*sizeof(char)); sprintf_s(PW32G(log_header), header_len, (logopt & LOG_PID) ? "%s[%d]" : "%s", ident, getpid()); } -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ -- cgit v1.2.1