Return-Path: Delivered-To: apmail-perl-dev-archive@www.apache.org Received: (qmail 10738 invoked from network); 3 Dec 2007 12:47:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Dec 2007 12:47:24 -0000 Received: (qmail 57739 invoked by uid 500); 3 Dec 2007 12:47:12 -0000 Delivered-To: apmail-perl-dev-archive@perl.apache.org Received: (qmail 57726 invoked by uid 500); 3 Dec 2007 12:47:12 -0000 Mailing-List: contact dev-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@perl.apache.org Received: (qmail 57715 invoked by uid 99); 3 Dec 2007 12:47:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Dec 2007 04:47:12 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of torsten.foertsch@gmx.net designates 213.165.64.20 as permitted sender) Received: from [213.165.64.20] (HELO mail.gmx.net) (213.165.64.20) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 03 Dec 2007 12:47:11 +0000 Received: (qmail invoked by alias); 03 Dec 2007 12:46:47 -0000 Received: from p57A5C9AF.dip.t-dialin.net (EHLO opi.home) [87.165.201.175] by mail.gmx.net (mp006) with SMTP; 03 Dec 2007 13:46:47 +0100 X-Authenticated: #1700068 X-Provags-ID: V01U2FsdGVkX1/duP9aQs/drJdQJI/Ys8OBgFp1wgFZnwRkW4JH7G PkuvqL2G1dNfwR From: Torsten Foertsch To: dev@perl.apache.org Subject: [PATCH 3/9] cleaning up trailing empty lines, expanding tabs and adding emacs local vars Date: Mon, 3 Dec 2007 13:34:24 +0100 User-Agent: KMail/1.9.6 (enterprise 20070904.708012) References: <200710091759.35224.torsten.foertsch@gmx.net> <473B02F3.3050908@ectoplasm.org> <200712031320.17372.torsten.foertsch@gmx.net> In-Reply-To: <200712031320.17372.torsten.foertsch@gmx.net> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_Qf/UH58wKANUj71" Message-Id: <200712031334.24907.torsten.foertsch@gmx.net> X-Y-GMX-Trusted: 0 X-Virus-Checked: Checked by ClamAV on apache.org --Boundary-00=_Qf/UH58wKANUj71 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Mon 03 Dec 2007, Torsten Foertsch wrote: > 28.diff > adds emacs local vars to C files --Boundary-00=_Qf/UH58wKANUj71 Content-Type: text/x-diff; charset="iso-8859-15"; name="28.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="28.diff" Index: src/modules/perl/modperl_handler.c =================================================================== --- src/modules/perl/modperl_handler.c (revision 27) +++ src/modules/perl/modperl_handler.c (revision 28) @@ -627,3 +627,10 @@ return TRUE; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_log.c =================================================================== --- src/modules/perl/modperl_log.c (revision 27) +++ src/modules/perl/modperl_log.c (revision 28) @@ -15,3 +15,10 @@ */ #include "modperl_log.h" + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_common_types.h =================================================================== --- src/modules/perl/modperl_common_types.h (revision 27) +++ src/modules/perl/modperl_common_types.h (revision 28) @@ -26,3 +26,10 @@ } modperl_uri_t; #endif /* MODPERL_COMMON_TYPES_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_handler.h =================================================================== --- src/modules/perl/modperl_handler.h (revision 27) +++ src/modules/perl/modperl_handler.h (revision 28) @@ -85,3 +85,10 @@ modperl_handler_action_e action); #endif /* MODPERL_HANDLER_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_apache_compat.c =================================================================== --- src/modules/perl/modperl_apache_compat.c (revision 27) +++ src/modules/perl/modperl_apache_compat.c (revision 28) @@ -69,3 +69,10 @@ } #endif /* since-APACHE-2.3.0 */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_module.c =================================================================== --- src/modules/perl/modperl_module.c (revision 27) +++ src/modules/perl/modperl_module.c (revision 28) @@ -931,3 +931,10 @@ return obj; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_filter.c =================================================================== --- src/modules/perl/modperl_filter.c (revision 27) +++ src/modules/perl/modperl_filter.c (revision 28) @@ -1292,3 +1292,10 @@ } #endif } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_common_util.c =================================================================== --- src/modules/perl/modperl_common_util.c (revision 27) +++ src/modules/perl/modperl_common_util.c (revision 28) @@ -152,3 +152,10 @@ uri->pool = p; return uri; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_log.h =================================================================== --- src/modules/perl/modperl_log.h (revision 27) +++ src/modules/perl/modperl_log.h (revision 28) @@ -45,3 +45,10 @@ msg) #endif /* MODPERL_LOG_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_pcw.c =================================================================== --- src/modules/perl/modperl_pcw.c (revision 27) +++ src/modules/perl/modperl_pcw.c (revision 28) @@ -128,3 +128,10 @@ } } } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_apache_compat.h =================================================================== --- src/modules/perl/modperl_apache_compat.h (revision 27) +++ src/modules/perl/modperl_apache_compat.h (revision 28) @@ -72,3 +72,10 @@ OPT_MULTI) #endif /* MODPERL_APACHE_COMPAT_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_module.h =================================================================== --- src/modules/perl/modperl_module.h (revision 27) +++ src/modules/perl/modperl_module.h (revision 28) @@ -28,3 +28,10 @@ ap_conf_vector_t *v); #endif /* MODPERL_MODULE_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_filter.h =================================================================== --- src/modules/perl/modperl_filter.h (revision 27) +++ src/modules/perl/modperl_filter.h (revision 28) @@ -114,3 +114,10 @@ SV *callback, const char *type); #endif /* MODPERL_FILTER_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_common_util.h =================================================================== --- src/modules/perl/modperl_common_util.h (revision 27) +++ src/modules/perl/modperl_common_util.h (revision 28) @@ -110,3 +110,10 @@ SV *modperl_perl_gensym(pTHX_ char *pack); #endif /* MODPERL_COMMON_UTIL_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_options.c =================================================================== --- src/modules/perl/modperl_options.c (revision 27) +++ src/modules/perl/modperl_options.c (revision 28) @@ -148,3 +148,10 @@ return conf; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_pcw.h =================================================================== --- src/modules/perl/modperl_pcw.h (revision 27) +++ src/modules/perl/modperl_pcw.h (revision 28) @@ -51,3 +51,10 @@ ap_pcw_dir_cb_t dir_cb, ap_pcw_srv_cb_t srv_cb); #endif /* MODPERL_PCW_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_options.h =================================================================== --- src/modules/perl/modperl_options.h (revision 27) +++ src/modules/perl/modperl_options.h (revision 28) @@ -27,3 +27,10 @@ modperl_options_t *new); #endif /* MODPERL_OPTIONS_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_perl.c =================================================================== --- src/modules/perl/modperl_perl.c (revision 27) +++ src/modules/perl/modperl_perl.c (revision 28) @@ -267,3 +267,10 @@ } #endif } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_tipool.c =================================================================== --- src/modules/perl/modperl_tipool.c (revision 27) +++ src/modules/perl/modperl_tipool.c (revision 28) @@ -401,3 +401,10 @@ } #endif /* USE_ITHREADS */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_perl.h =================================================================== --- src/modules/perl/modperl_perl.h (revision 27) +++ src/modules/perl/modperl_perl.h (revision 28) @@ -48,3 +48,10 @@ void modperl_hash_seed_set(pTHX); #endif /* MODPERL_PERL_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_io.c =================================================================== --- src/modules/perl/modperl_io.c (revision 27) +++ src/modules/perl/modperl_io.c (revision 28) @@ -275,3 +275,10 @@ MP_TRACE_o(MP_FUNC, "end\n"); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_tipool.h =================================================================== --- src/modules/perl/modperl_tipool.h (revision 27) +++ src/modules/perl/modperl_tipool.h (revision 28) @@ -87,3 +87,10 @@ #endif /* USE_ITHREADS */ #endif /* MODPERL_TIPOOL_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_io.h =================================================================== --- src/modules/perl/modperl_io.h (revision 27) +++ src/modules/perl/modperl_io.h (revision 28) @@ -75,3 +75,10 @@ #endif /* MODPERL_IO_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_perl_global.c =================================================================== --- src/modules/perl/modperl_perl_global.c (revision 27) +++ src/modules/perl/modperl_perl_global.c (revision 28) @@ -491,3 +491,10 @@ MP_perl_global_entries); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_common_includes.h =================================================================== --- src/modules/perl/modperl_common_includes.h (revision 27) +++ src/modules/perl/modperl_common_includes.h (revision 28) @@ -25,3 +25,10 @@ #include "modperl_common_types.h" #endif /* MODPERL_COMMON_INCLUDES_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_debug.c =================================================================== --- src/modules/perl/modperl_debug.c (revision 27) +++ src/modules/perl/modperl_debug.c (revision 28) @@ -75,3 +75,10 @@ } #endif + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_perl_global.h =================================================================== --- src/modules/perl/modperl_perl_global.h (revision 27) +++ src/modules/perl/modperl_perl_global.h (revision 28) @@ -89,3 +89,10 @@ const char *package, I32 packlen); #endif + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_common_log.c =================================================================== --- src/modules/perl/modperl_common_log.c (revision 27) +++ src/modules/perl/modperl_common_log.c (revision 28) @@ -101,3 +101,10 @@ MP_TRACE_any_do(MP_TRACE_dump_flags()); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_error.c =================================================================== --- src/modules/perl/modperl_error.c (revision 27) +++ src/modules/perl/modperl_error.c (revision 28) @@ -93,3 +93,10 @@ Perl_croak(aTHX_ Nullch); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_debug.h =================================================================== --- src/modules/perl/modperl_debug.h (revision 27) +++ src/modules/perl/modperl_debug.h (revision 28) @@ -28,3 +28,10 @@ #endif #endif /* MODPERL_DEBUG_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_perl_includes.h =================================================================== --- src/modules/perl/modperl_perl_includes.h (revision 27) +++ src/modules/perl/modperl_perl_includes.h (revision 28) @@ -142,3 +142,10 @@ #endif #endif /* MODPERL_PERL_INCLUDES_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_error.h =================================================================== --- src/modules/perl/modperl_error.h (revision 27) +++ src/modules/perl/modperl_error.h (revision 28) @@ -46,3 +46,10 @@ } STMT_END #endif /* MODPERL_ERROR_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_common_log.h =================================================================== --- src/modules/perl/modperl_common_log.h (revision 27) +++ src/modules/perl/modperl_common_log.h (revision 28) @@ -62,3 +62,10 @@ void modperl_trace_level_set(apr_file_t *logfile, const char *level); #endif /* MODPERL_COMMON_LOG_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_perl_pp.c =================================================================== --- src/modules/perl/modperl_perl_pp.c (revision 27) +++ src/modules/perl/modperl_perl_pp.c (revision 28) @@ -113,3 +113,10 @@ modperl_perl_pp_unset(i); } } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_perl_pp.h =================================================================== --- src/modules/perl/modperl_perl_pp.h (revision 27) +++ src/modules/perl/modperl_perl_pp.h (revision 28) @@ -41,3 +41,10 @@ void modperl_perl_pp_unset_all(void); #endif /* MODPERL_PERL_PP_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_perl_unembed.h =================================================================== --- src/modules/perl/modperl_perl_unembed.h (revision 27) +++ src/modules/perl/modperl_perl_unembed.h (revision 28) @@ -43,3 +43,10 @@ #undef list #endif /* MODPERL_PERL_UNEMBED_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_apache_includes.h =================================================================== --- src/modules/perl/modperl_apache_includes.h (revision 27) +++ src/modules/perl/modperl_apache_includes.h (revision 28) @@ -40,3 +40,10 @@ #include "util_script.h" #endif /* MODPERL_APACHE_INCLUDES_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_apr_includes.h =================================================================== --- src/modules/perl/modperl_apr_includes.h (revision 27) +++ src/modules/perl/modperl_apr_includes.h (revision 28) @@ -37,3 +37,10 @@ #include "apr_env.h" #endif /* MODPERL_APR_INCLUDES_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/mod_perl.c =================================================================== --- src/modules/perl/mod_perl.c (revision 27) +++ src/modules/perl/mod_perl.c (revision 28) @@ -1158,3 +1158,10 @@ modperl_cmds, /* table of config file commands */ modperl_register_hooks, /* register hooks */ }; + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/mod_perl.h =================================================================== --- src/modules/perl/mod_perl.h (revision 27) +++ src/modules/perl/mod_perl.h (revision 28) @@ -200,3 +200,10 @@ #endif /* end of #ifdef USE_ITHREADS */ #endif /* MOD_PERL_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_svptr_table.c =================================================================== --- src/modules/perl/modperl_svptr_table.c (revision 27) +++ src/modules/perl/modperl_svptr_table.c (revision 28) @@ -300,3 +300,10 @@ Safefree(tbl->tbl_ary); Safefree(tbl); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_const.c =================================================================== --- src/modules/perl/modperl_const.c (revision 27) +++ src/modules/perl/modperl_const.c (revision 28) @@ -127,3 +127,10 @@ XSRETURN_EMPTY; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_mgv.c =================================================================== --- src/modules/perl/modperl_mgv.c (revision 27) +++ src/modules/perl/modperl_mgv.c (revision 28) @@ -528,3 +528,10 @@ modperl_hash_handlers_dir, modperl_hash_handlers_srv); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_apr_compat.h =================================================================== --- src/modules/perl/modperl_apr_compat.h (revision 27) +++ src/modules/perl/modperl_apr_compat.h (revision 28) @@ -153,3 +153,10 @@ #endif #endif /* MODPERL_APR_COMPAT_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_svptr_table.h =================================================================== --- src/modules/perl/modperl_svptr_table.h (revision 27) +++ src/modules/perl/modperl_svptr_table.h (revision 28) @@ -55,3 +55,10 @@ modperl_svptr_table_free(pTHX_ PTR_TBL_t *tbl); #endif /* MODPERL_SVPTR_TABLE_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_const.h =================================================================== --- src/modules/perl/modperl_const.h (revision 27) +++ src/modules/perl/modperl_const.h (revision 28) @@ -31,3 +31,10 @@ __FILE__) #endif /* MODPERL_CONST_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_callback.c =================================================================== --- src/modules/perl/modperl_callback.c (revision 27) +++ src/modules/perl/modperl_callback.c (revision 28) @@ -413,3 +413,10 @@ NULL, NULL, s, pconf, plog, ptemp, run_mode); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_mgv.h =================================================================== --- src/modules/perl/modperl_mgv.h (revision 27) +++ src/modules/perl/modperl_mgv.h (revision 28) @@ -56,3 +56,10 @@ GvCV(sv) #endif /* MODPERL_MGV_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_common_debug.c =================================================================== --- src/modules/perl/modperl_common_debug.c (revision 27) +++ src/modules/perl/modperl_common_debug.c (revision 28) @@ -17,3 +17,10 @@ /* This file must not contain any symbols from apache/mod_perl * (apr and perl are OK) */ #include "modperl_common_includes.h" + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_interp.c =================================================================== --- src/modules/perl/modperl_interp.c (revision 27) +++ src/modules/perl/modperl_interp.c (revision 28) @@ -600,3 +600,10 @@ } #endif /* USE_ITHREADS */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_callback.h =================================================================== --- src/modules/perl/modperl_callback.h (revision 27) +++ src/modules/perl/modperl_callback.h (revision 28) @@ -66,3 +66,10 @@ modperl_hook_run_mode_e run_mode); #endif /* MODPERL_CALLBACK_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_common_debug.h =================================================================== --- src/modules/perl/modperl_common_debug.h (revision 27) +++ src/modules/perl/modperl_common_debug.h (revision 28) @@ -19,3 +19,10 @@ #endif /* MODPERL_COMMON_DEBUG_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_config.c =================================================================== --- src/modules/perl/modperl_config.c (revision 27) +++ src/modules/perl/modperl_config.c (revision 28) @@ -677,3 +677,10 @@ } } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_interp.h =================================================================== --- src/modules/perl/modperl_interp.h (revision 27) +++ src/modules/perl/modperl_interp.h (revision 28) @@ -125,3 +125,10 @@ #endif /* USE_ITHREADS */ #endif /* MODPERL_INTERP_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_io_apache.c =================================================================== --- src/modules/perl/modperl_io_apache.c (revision 27) +++ src/modules/perl/modperl_io_apache.c (revision 28) @@ -335,3 +335,10 @@ return total; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_gtop.c =================================================================== --- src/modules/perl/modperl_gtop.c (revision 27) +++ src/modules/perl/modperl_gtop.c (revision 28) @@ -145,3 +145,10 @@ } #endif /* MP_USE_GTOP */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_types.h =================================================================== --- src/modules/perl/modperl_types.h (revision 27) +++ src/modules/perl/modperl_types.h (revision 28) @@ -288,3 +288,10 @@ } modperl_hook_run_mode_e; #endif /* MODPERL_TYPES_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_config.h =================================================================== --- src/modules/perl/modperl_config.h (revision 27) +++ src/modules/perl/modperl_config.h (revision 28) @@ -174,3 +174,10 @@ #endif /* MODPERL_CONFIG_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_io_apache.h =================================================================== --- src/modules/perl/modperl_io_apache.h (revision 27) +++ src/modules/perl/modperl_io_apache.h (revision 28) @@ -58,3 +58,10 @@ char *buffer, Size_t len); #endif /* MODPERL_IO_APACHE_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_bucket.c =================================================================== --- src/modules/perl/modperl_bucket.c (revision 27) +++ src/modules/perl/modperl_bucket.c (revision 28) @@ -157,3 +157,10 @@ bucket->free = apr_bucket_free; return modperl_bucket_sv_make(aTHX_ bucket, sv, offset, len); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_util.c =================================================================== --- src/modules/perl/modperl_util.c (revision 27) +++ src/modules/perl/modperl_util.c (revision 28) @@ -890,3 +890,10 @@ } return newRV_inc((SV *)pnotes->pnotes); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_gtop.h =================================================================== --- src/modules/perl/modperl_gtop.h (revision 27) +++ src/modules/perl/modperl_gtop.h (revision 28) @@ -72,3 +72,10 @@ #endif /* MP_USE_GTOP */ #endif /* MODPERL_GTOP_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_sys.c =================================================================== --- src/modules/perl/modperl_sys.c (revision 27) +++ src/modules/perl/modperl_sys.c (revision 28) @@ -67,3 +67,10 @@ return 0; #endif } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_bucket.h =================================================================== --- src/modules/perl/modperl_bucket.h (revision 27) +++ src/modules/perl/modperl_bucket.h (revision 28) @@ -21,3 +21,10 @@ apr_off_t offset, apr_size_t len); #endif /* MODPERL_BUCKET_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_util.h =================================================================== --- src/modules/perl/modperl_util.h (revision 27) +++ src/modules/perl/modperl_util.h (revision 28) @@ -140,3 +140,10 @@ apr_pool_t *pool ); #endif /* MODPERL_UTIL_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_sys.h =================================================================== --- src/modules/perl/modperl_sys.h (revision 27) +++ src/modules/perl/modperl_sys.h (revision 28) @@ -28,3 +28,10 @@ int modperl_sys_dlclose(void *handle); #endif /* MODPERL_SYS_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_env.c =================================================================== --- src/modules/perl/modperl_env.c (revision 27) +++ src/modules/perl/modperl_env.c (revision 28) @@ -645,3 +645,10 @@ StructCopy(&MP_PERL_vtbl_env, &PL_vtbl_env, MGVTBL); StructCopy(&MP_PERL_vtbl_envelem, &PL_vtbl_envelem, MGVTBL); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_env.h =================================================================== --- src/modules/perl/modperl_env.h (revision 27) +++ src/modules/perl/modperl_env.h (revision 28) @@ -63,3 +63,10 @@ void modperl_env_unload(void); #endif /* MODPERL_ENV_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_global.c =================================================================== --- src/modules/perl/modperl_global.c (revision 27) +++ src/modules/perl/modperl_global.c (revision 28) @@ -303,3 +303,10 @@ } MP_TLS_IMPL(request_rec, request_rec *) + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_cgi.c =================================================================== --- src/modules/perl/modperl_cgi.c (revision 27) +++ src/modules/perl/modperl_cgi.c (revision 28) @@ -101,3 +101,10 @@ return status; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_cmd.c =================================================================== --- src/modules/perl/modperl_cmd.c (revision 27) +++ src/modules/perl/modperl_cmd.c (revision 28) @@ -834,3 +834,10 @@ MP_CMD_INTERP_POOL_IMP(max_requests); #endif /* USE_ITHREADS */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_time.h =================================================================== --- src/modules/perl/modperl_time.h (revision 27) +++ src/modules/perl/modperl_time.h (revision 28) @@ -50,3 +50,10 @@ }) #endif /* MODPERL_TIME_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_global.h =================================================================== --- src/modules/perl/modperl_global.h (revision 27) +++ src/modules/perl/modperl_global.h (revision 28) @@ -81,3 +81,10 @@ MP_TLS_DECL(request_rec, request_rec *); #endif /* MODPERL_GLOBAL_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_cgi.h =================================================================== --- src/modules/perl/modperl_cgi.h (revision 27) +++ src/modules/perl/modperl_cgi.h (revision 28) @@ -36,3 +36,10 @@ apr_size_t *len, const char **body); #endif /* MODPERL_CGI_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: src/modules/perl/modperl_cmd.h =================================================================== --- src/modules/perl/modperl_cmd.h (revision 27) +++ src/modules/perl/modperl_cmd.h (revision 28) @@ -148,3 +148,10 @@ OR_ALL|EXEC_ON_READ, desc ) #endif /* MODPERL_CMD_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/modperl_xs_util.h =================================================================== --- xs/modperl_xs_util.h (revision 27) +++ xs/modperl_xs_util.h (revision 28) @@ -158,3 +158,10 @@ #endif /* MODPERL_XS_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/OS/APR__OS.h =================================================================== --- xs/APR/OS/APR__OS.h (revision 27) +++ xs/APR/OS/APR__OS.h (revision 28) @@ -22,3 +22,10 @@ return 0; #endif } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Status/APR__Status.h =================================================================== --- xs/APR/Status/APR__Status.h (revision 27) +++ xs/APR/Status/APR__Status.h (revision 28) @@ -23,3 +23,10 @@ #define mpxs_APR__Status_is_ECONNABORTED APR_STATUS_IS_ECONNABORTED #define mpxs_APR__Status_is_ECONNRESET APR_STATUS_IS_ECONNRESET #define mpxs_APR__Status_is_TIMEUP APR_STATUS_IS_TIMEUP + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Base64/APR__Base64.h =================================================================== --- xs/APR/Base64/APR__Base64.h (revision 27) +++ xs/APR/Base64/APR__Base64.h (revision 28) @@ -55,3 +55,10 @@ mpxs_set_targ(mpxs_apr_base64_decode, ST(0)); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Table/APR__Table.h =================================================================== --- xs/APR/Table/APR__Table.h (revision 27) +++ xs/APR/Table/APR__Table.h (revision 28) @@ -232,3 +232,10 @@ }); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Socket/APR__Socket.h =================================================================== --- xs/APR/Socket/APR__Socket.h (revision 27) +++ xs/APR/Socket/APR__Socket.h (revision 28) @@ -116,3 +116,10 @@ return apr_poll(&fd, 1, &nsds, timeout); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Lock/APR__Lock.h =================================================================== --- xs/APR/Lock/APR__Lock.h (revision 27) +++ xs/APR/Lock/APR__Lock.h (revision 28) @@ -13,3 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/BucketAlloc/APR__BucketAlloc.h =================================================================== --- xs/APR/BucketAlloc/APR__BucketAlloc.h (revision 27) +++ xs/APR/BucketAlloc/APR__BucketAlloc.h (revision 28) @@ -27,3 +27,10 @@ mpxs_add_pool_magic(ba_sv, p_sv); return ba_sv; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/IpSubnet/APR__IpSubnet.h =================================================================== --- xs/APR/IpSubnet/APR__IpSubnet.h (revision 27) +++ xs/APR/IpSubnet/APR__IpSubnet.h (revision 28) @@ -28,3 +28,10 @@ mpxs_add_pool_magic(ipsub_sv, p_sv); return ipsub_sv; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Error/APR__Error.h =================================================================== --- xs/APR/Error/APR__Error.h (revision 27) +++ xs/APR/Error/APR__Error.h (revision 28) @@ -15,3 +15,10 @@ */ #define mpxs_APR__Error_strerror(rc) modperl_error_strerror(aTHX_ rc) + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/ThreadRWLock/APR__ThreadRWLock.h =================================================================== --- xs/APR/ThreadRWLock/APR__ThreadRWLock.h (revision 27) +++ xs/APR/ThreadRWLock/APR__ThreadRWLock.h (revision 28) @@ -27,3 +27,10 @@ mpxs_add_pool_magic(rwlock_sv, p_sv); return rwlock_sv; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/SockAddr/APR__SockAddr.h =================================================================== --- xs/APR/SockAddr/APR__SockAddr.h (revision 27) +++ xs/APR/SockAddr/APR__SockAddr.h (revision 28) @@ -23,3 +23,10 @@ return addr; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/PerlIO/modperl_apr_perlio.c =================================================================== --- xs/APR/PerlIO/modperl_apr_perlio.c (revision 27) +++ xs/APR/PerlIO/modperl_apr_perlio.c (revision 28) @@ -616,3 +616,10 @@ } #endif /* PERLIO_LAYERS */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/PerlIO/modperl_apr_perlio.h =================================================================== --- xs/APR/PerlIO/modperl_apr_perlio.h (revision 27) +++ xs/APR/PerlIO/modperl_apr_perlio.h (revision 28) @@ -74,3 +74,10 @@ #endif /* MP_SOURCE_SCAN */ #endif /* MODPERL_APR_PERLIO_H */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/ThreadMutex/APR__ThreadMutex.h =================================================================== --- xs/APR/ThreadMutex/APR__ThreadMutex.h (revision 27) +++ xs/APR/ThreadMutex/APR__ThreadMutex.h (revision 28) @@ -28,3 +28,10 @@ mpxs_add_pool_magic(mutex_sv, p_sv); return mutex_sv; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Brigade/APR__Brigade.h =================================================================== --- xs/APR/Brigade/APR__Brigade.h (revision 27) +++ xs/APR/Brigade/APR__Brigade.h (revision 28) @@ -171,3 +171,10 @@ { MP_RUN_CROAK(apr_brigade_destroy(bb), "APR::Brigade::destroy"); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/URI/APR__URI.h =================================================================== --- xs/APR/URI/APR__URI.h (revision 27) +++ xs/APR/URI/APR__URI.h (revision 28) @@ -93,3 +93,10 @@ } return Nullsv; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Finfo/APR__Finfo.h =================================================================== --- xs/APR/Finfo/APR__Finfo.h (revision 27) +++ xs/APR/Finfo/APR__Finfo.h (revision 28) @@ -30,3 +30,10 @@ return finfo_sv; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/String/APR__String.h =================================================================== --- xs/APR/String/APR__String.h (revision 27) +++ xs/APR/String/APR__String.h (revision 28) @@ -23,3 +23,10 @@ return newSVpvn(buff, 4); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/UUID/APR__UUID.h =================================================================== --- xs/APR/UUID/APR__UUID.h (revision 27) +++ xs/APR/UUID/APR__UUID.h (revision 28) @@ -49,3 +49,10 @@ } #define apr_uuid_DESTROY(uuid) safefree(uuid) + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Pool/APR__Pool.h =================================================================== --- xs/APR/Pool/APR__Pool.h (revision 27) +++ xs/APR/Pool/APR__Pool.h (revision 28) @@ -381,3 +381,10 @@ apr_pool_destroy(p); } } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Bucket/APR__Bucket.h =================================================================== --- xs/APR/Bucket/APR__Bucket.h (revision 27) +++ xs/APR/Bucket/APR__Bucket.h (revision 28) @@ -122,3 +122,10 @@ return rc; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/APR/Util/APR__Util.h =================================================================== --- xs/APR/Util/APR__Util.h (revision 27) +++ xs/APR/Util/APR__Util.h (revision 28) @@ -19,3 +19,10 @@ { return apr_password_validate(passwd, hash) == APR_SUCCESS; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/ModPerl/Global/ModPerl__Global.h =================================================================== --- xs/ModPerl/Global/ModPerl__Global.h (revision 27) +++ xs/ModPerl/Global/ModPerl__Global.h (revision 28) @@ -60,3 +60,10 @@ return mpxs_special_list_do(aTHX_ name, package, modperl_perl_global_avcv_register); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/ModPerl/Interpreter/ModPerl__Interpreter.h =================================================================== --- xs/ModPerl/Interpreter/ModPerl__Interpreter.h (revision 27) +++ xs/ModPerl/Interpreter/ModPerl__Interpreter.h (revision 28) @@ -19,3 +19,10 @@ { return MP_THX_INTERP_GET(aTHX); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/ModPerl/Util/ModPerl__Util.h =================================================================== --- xs/ModPerl/Util/ModPerl__Util.h (revision 27) +++ xs/ModPerl/Util/ModPerl__Util.h (revision 28) @@ -40,3 +40,10 @@ modperl_package_unload(aTHX_ pkg) /* ModPerl::Util::exit lives in mod_perl.so, see modperl_perl.c */ + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/RequestIO/Apache2__RequestIO.h =================================================================== --- xs/Apache2/RequestIO/Apache2__RequestIO.h (revision 27) +++ xs/Apache2/RequestIO/Apache2__RequestIO.h (revision 28) @@ -372,3 +372,10 @@ return rc; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/Log/Apache2__Log.h =================================================================== --- xs/Apache2/Log/Apache2__Log.h (revision 27) +++ xs/Apache2/Log/Apache2__Log.h (revision 28) @@ -334,3 +334,10 @@ XSRETURN_EMPTY; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/RequestRec/Apache2__RequestRec.h =================================================================== --- xs/Apache2/RequestRec/Apache2__RequestRec.h (revision 27) +++ xs/Apache2/RequestRec/Apache2__RequestRec.h (revision 28) @@ -146,3 +146,10 @@ return RETVAL; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/Module/Apache2__Module.h =================================================================== --- xs/Apache2/Module/Apache2__Module.h (revision 27) +++ xs/Apache2/Module/Apache2__Module.h (revision 28) @@ -96,3 +96,10 @@ return; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/Filter/Apache2__Filter.h =================================================================== --- xs/Apache2/Filter/Apache2__Filter.h (revision 27) +++ xs/Apache2/Filter/Apache2__Filter.h (revision 28) @@ -366,3 +366,10 @@ return rc; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/RequestUtil/Apache2__RequestUtil.h =================================================================== --- xs/Apache2/RequestUtil/Apache2__RequestUtil.h (revision 27) +++ xs/Apache2/RequestUtil/Apache2__RequestUtil.h (revision 28) @@ -367,3 +367,10 @@ apr_pool_cleanup_register(r->pool, r->pool, child_terminate, apr_pool_cleanup_null); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/SubProcess/Apache2__SubProcess.h =================================================================== --- xs/Apache2/SubProcess/Apache2__SubProcess.h (revision 27) +++ xs/Apache2/SubProcess/Apache2__SubProcess.h (revision 28) @@ -216,3 +216,10 @@ PUTBACK; } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/MPM/Apache2__MPM.h =================================================================== --- xs/Apache2/MPM/Apache2__MPM.h (revision 27) +++ xs/Apache2/MPM/Apache2__MPM.h (revision 28) @@ -58,3 +58,10 @@ newCONSTSUB(PL_defstash, "Apache2::MPM::show", newSVpv(ap_show_mpm(), 0)); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/ConnectionUtil/Apache2__ConnectionUtil.h =================================================================== --- xs/Apache2/ConnectionUtil/Apache2__ConnectionUtil.h (revision 27) +++ xs/Apache2/ConnectionUtil/Apache2__ConnectionUtil.h (revision 28) @@ -41,3 +41,10 @@ modperl_pnotes_kill(&ccfg->pnotes); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/Response/Apache2__Response.h =================================================================== --- xs/Apache2/Response/Apache2__Response.h (revision 27) +++ xs/Apache2/Response/Apache2__Response.h (revision 28) @@ -39,3 +39,10 @@ } ap_set_last_modified(r); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/Connection/Apache2__Connection.h =================================================================== --- xs/Apache2/Connection/Apache2__Connection.h (revision 27) +++ xs/Apache2/Connection/Apache2__Connection.h (revision 28) @@ -40,3 +40,10 @@ { return ap_get_remote_host(c, (void *)dir_config, type, NULL); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/URI/Apache2__URI.h =================================================================== --- xs/Apache2/URI/Apache2__URI.h (revision 27) +++ xs/Apache2/URI/Apache2__URI.h (revision 28) @@ -38,3 +38,10 @@ return SvPVX(url); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/Access/Apache2__Access.h =================================================================== --- xs/Apache2/Access/Apache2__Access.h (revision 27) +++ xs/Apache2/Access/Apache2__Access.h (revision 28) @@ -154,3 +154,10 @@ return MP_HTTPD_OVERRIDE_OPTS_DEFAULT; #endif } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/SubRequest/Apache2__SubRequest.h =================================================================== --- xs/Apache2/SubRequest/Apache2__SubRequest.h (revision 27) +++ xs/Apache2/SubRequest/Apache2__SubRequest.h (revision 28) @@ -29,3 +29,10 @@ return ap_run_sub_req(r); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/ServerUtil/Apache2__ServerUtil.h =================================================================== --- xs/Apache2/ServerUtil/Apache2__ServerUtil.h (revision 27) +++ xs/Apache2/ServerUtil/Apache2__ServerUtil.h (revision 28) @@ -202,3 +202,10 @@ newCONSTSUB(PL_defstash, "Apache2::ServerUtil::get_server_description", newSVpv(ap_get_server_description(), 0)); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/CmdParms/Apache2__CmdParms.h =================================================================== --- xs/Apache2/CmdParms/Apache2__CmdParms.h (revision 27) +++ xs/Apache2/CmdParms/Apache2__CmdParms.h (revision 28) @@ -46,3 +46,10 @@ return MP_HTTPD_OVERRIDE_OPTS_DEFAULT; #endif } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/Util/Apache2__Util.h =================================================================== --- xs/Apache2/Util/Apache2__Util.h (revision 27) +++ xs/Apache2/Util/Apache2__Util.h (revision 28) @@ -16,3 +16,10 @@ #define TIME_NOW apr_time_now() #define DEFAULT_TIME_FORMAT "%a, %d %b %Y %H:%M:%S %Z" + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/Directive/Apache2__Directive.h =================================================================== --- xs/Apache2/Directive/Apache2__Directive.h (revision 27) +++ xs/Apache2/Directive/Apache2__Directive.h (revision 28) @@ -194,3 +194,10 @@ } }); } + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ Index: xs/Apache2/Command/Apache2__Command.h =================================================================== --- xs/Apache2/Command/Apache2__Command.h (revision 27) +++ xs/Apache2/Command/Apache2__Command.h (revision 28) @@ -16,3 +16,10 @@ #define mpxs_Apache2__Command_next(cmd) \ (++cmd, ((cmd && cmd->name) ? cmd : NULL)) + +/* + * Local Variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */ --Boundary-00=_Qf/UH58wKANUj71 Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org For additional commands, e-mail: dev-help@perl.apache.org --Boundary-00=_Qf/UH58wKANUj71--