In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/abec5bedacd77b2152e61ec3216ab47bd7272fc9?hp=539023973b95d208601bd10848496eae785dcacc>
- Log ----------------------------------------------------------------- commit abec5bedacd77b2152e61ec3216ab47bd7272fc9 Author: Dagfinn Ilmari Mannsåker <[email protected]> Date: Wed Mar 18 01:37:04 2015 +0100 Replace common Emacs file-local variables with dir-locals An empty cpan/.dir-locals.el stops Emacs using the core defaults for code imported from CPAN. Committer's work: To keep t/porting/cmp_version.t and t/porting/utils.t happy, $VERSION needed to be incremented in many files, including throughout dist/PathTools. perldelta entry for module updates. Add two Emacs control files to MANIFEST; re-sort MANIFEST. For: RT #124119. ----------------------------------------------------------------------- Summary of changes: .dir-locals.el | 5 +++++ MANIFEST | 2 ++ Porting/bisect-runner.pl | 5 ----- Porting/bisect.pl | 5 ----- Porting/new-perldelta.pl | 5 ----- Porting/pod_lib.pl | 5 ----- Porting/pod_rules.pl | 5 ----- XSUB.h | 6 ------ av.c | 6 ------ av.h | 6 ------ caretx.c | 6 ------ cop.h | 6 ------ cpan/.dir-locals.el | 2 ++ cv.h | 6 ------ deb.c | 6 ------ dist/PathTools/Cwd.pm | 2 +- dist/PathTools/Cwd.xs | 6 ------ dist/PathTools/lib/File/Spec.pm | 2 +- dist/PathTools/lib/File/Spec/Cygwin.pm | 2 +- dist/PathTools/lib/File/Spec/Epoc.pm | 2 +- dist/PathTools/lib/File/Spec/Functions.pm | 2 +- dist/PathTools/lib/File/Spec/Mac.pm | 2 +- dist/PathTools/lib/File/Spec/OS2.pm | 2 +- dist/PathTools/lib/File/Spec/Unix.pm | 2 +- dist/PathTools/lib/File/Spec/VMS.pm | 2 +- dist/PathTools/lib/File/Spec/Win32.pm | 2 +- doio.c | 6 ------ doop.c | 6 ------ dosish.h | 6 ------ dquote_static.c | 6 ------ dump.c | 6 ------ ext/ExtUtils-Miniperl/lib/ExtUtils/Miniperl.pm | 8 +------- ext/PerlIO-mmap/mmap.pm | 2 +- ext/PerlIO-mmap/mmap.xs | 6 ------ ext/XS-APItest/core_or_not.inc | 3 --- ext/attributes/attributes.pm | 2 +- ext/attributes/attributes.xs | 6 ------ ext/re/re_top.h | 6 ------ fakesdio.h | 6 ------ globals.c | 6 ------ gv.c | 6 ------ gv.h | 6 ------ handy.h | 6 ------ hv.c | 6 ------ hv.h | 6 ------ hv_func.h | 6 ------ inline.h | 6 ------ installman | 5 ----- installperl | 5 ----- iperlsys.h | 6 ------ lib/File/stat.t | 5 ----- locale.c | 6 ------ malloc.c | 6 ------ mathoms.c | 6 ------ mg.c | 6 ------ mg.h | 6 ------ mro_core.c | 6 ------ mydtrace.h | 6 ------ nostdio.h | 6 ------ numeric.c | 6 ------ op.c | 6 ------ op.h | 6 ------ pad.c | 6 ------ pad.h | 6 ------ parser.h | 6 ------ perl.c | 6 ------ perl.h | 6 ------ perldtrace.d | 5 ----- perlio.c | 6 ------ perlio.h | 6 ------ perliol.h | 6 ------ perlsdio.h | 6 ------ perly.c | 6 ------ pod/buildtoc | 5 ----- pod/perldelta.pod | 20 ++++++++++++++++++++ pp.c | 6 ------ pp.h | 6 ------ pp_ctl.c | 6 ------ pp_hot.c | 6 ------ pp_pack.c | 6 ------ pp_sort.c | 6 ------ pp_sys.c | 6 ------ regcomp.c | 6 ------ regcomp.h | 6 ------ regexec.c | 6 ------ regexp.h | 6 ------ run.c | 6 ------ scope.c | 6 ------ scope.h | 6 ------ sv.c | 6 ------ sv.h | 6 ------ t/op/attrproto.t | 4 ---- t/op/groups.t | 4 ---- t/porting/FindExt.t | 5 ----- t/porting/utils.t | 5 ----- taint.c | 6 ------ thread.h | 6 ------ toke.c | 6 ------ universal.c | 6 ------ unixish.h | 6 ------ utf8.c | 6 ------ utf8.h | 6 ------ utfebcdic.h | 6 ------ util.c | 6 ------ util.h | 6 ------ win32/FindExt.pm | 7 +------ write_buildcustomize.pl | 5 ----- 107 files changed, 43 insertions(+), 539 deletions(-) create mode 100644 .dir-locals.el create mode 100644 cpan/.dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..9e118b6 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,5 @@ +;; Default settings for all except cpan/ +((nil . ((indent-tabs-mode . nil))) ; all modes + (cperl-mode . ((cperl-indent-level 4))) + (c-mode . ((c-indentation-style . bsd) + (c-basic-offset . 4)))) diff --git a/MANIFEST b/MANIFEST index d23554a..1565566 100644 --- a/MANIFEST +++ b/MANIFEST @@ -785,6 +785,7 @@ cpan/Digest/t/digest.t See if Digest extensions work cpan/Digest/t/file.t See if Digest extensions work cpan/Digest/t/lib/Digest/Dummy.pm See if Digest extensions work cpan/Digest/t/security.t See if Digest extensions work +cpan/.dir-locals.el Emacs control file cpan/Encode/bin/enc2xs Encode module generator cpan/Encode/bin/encguess guess character encodings of files cpan/Encode/bin/piconv iconv by perl @@ -2852,6 +2853,7 @@ Cross/warp Cross-compilation cv.h Code value header cygwin/cygwin.c Additional code for Cygwin port deb.c Debugging routines +.dir-locals.el Emacs control file dist/Attribute-Handlers/Changes Attribute::Handlers dist/Attribute-Handlers/demo/demo2.pl Attribute::Handlers demo dist/Attribute-Handlers/demo/demo3.pl Attribute::Handlers demo diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl index 174ea5c..383f999 100755 --- a/Porting/bisect-runner.pl +++ b/Porting/bisect-runner.pl @@ -3495,9 +3495,4 @@ sub apply_fixups { } } -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/Porting/bisect.pl b/Porting/bisect.pl index 6a51f67..6e52a4c 100755 --- a/Porting/bisect.pl +++ b/Porting/bisect.pl @@ -235,9 +235,4 @@ Documentation for this is in bisect-runner.pl =cut -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/Porting/new-perldelta.pl b/Porting/new-perldelta.pl index bc11e59..09b7783 100644 --- a/Porting/new-perldelta.pl +++ b/Porting/new-perldelta.pl @@ -103,9 +103,4 @@ git_add_modified(map {chomp $_; $_} `$^X Porting/pod_rules.pl --showfiles`); notify_success(); -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/Porting/pod_lib.pl b/Porting/pod_lib.pl index 3088d16..6eaacde 100644 --- a/Porting/pod_lib.pl +++ b/Porting/pod_lib.pl @@ -665,9 +665,4 @@ sub get_pod_metadata { 1; -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/Porting/pod_rules.pl b/Porting/pod_rules.pl index 1de43a9..016a4c5 100644 --- a/Porting/pod_rules.pl +++ b/Porting/pod_rules.pl @@ -225,9 +225,4 @@ pod/$_: pod/$state->{copies}{$_} process($_, $Build{$_}, main->can("do_$_"), $Test && ++$test, $Verbose) foreach sort keys %Build; -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/XSUB.h b/XSUB.h index 7b04281..49c15f7 100644 --- a/XSUB.h +++ b/XSUB.h @@ -714,11 +714,5 @@ Rethrows a previously caught exception. See L<perlguts/"Exception Handling">. #endif /* _INC_PERL_XSUB_H */ /* include guard */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/av.c b/av.c index 53690d5..2d9717a 100644 --- a/av.c +++ b/av.c @@ -1022,11 +1022,5 @@ Perl_av_iter_p(pTHX_ AV *av) { } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/av.h b/av.h index dcd32cf..30b8e52 100644 --- a/av.h +++ b/av.h @@ -96,11 +96,5 @@ Perl equivalent: C<my @array;>. #define newAV() MUTABLE_AV(newSV_type(SVt_PVAV)) /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/caretx.c b/caretx.c index 5d3318c..9366bc4 100644 --- a/caretx.c +++ b/caretx.c @@ -135,11 +135,5 @@ Perl_set_caret_X(pTHX) { } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/cop.h b/cop.h index ec3e32f..ce0cd54 100644 --- a/cop.h +++ b/cop.h @@ -1266,11 +1266,5 @@ See L<perlcall/LIGHTWEIGHT CALLBACKS>. multicall_cop = CvSTART(cv); \ } STMT_END /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/cpan/.dir-locals.el b/cpan/.dir-locals.el new file mode 100644 index 0000000..13109d1 --- /dev/null +++ b/cpan/.dir-locals.el @@ -0,0 +1,2 @@ +;; Empty file to avoid imposing the defaults from the parent directory +;; on code imported from CPAN diff --git a/cv.h b/cv.h index 89e471c..d4dfd2d 100644 --- a/cv.h +++ b/cv.h @@ -310,11 +310,5 @@ typedef OP *(*Perl_call_checker)(pTHX_ OP *, GV *, SV *); #endif /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/deb.c b/deb.c index b93f120..aacd8bf 100644 --- a/deb.c +++ b/deb.c @@ -326,11 +326,5 @@ Perl_deb_stack_all(pTHX) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/dist/PathTools/Cwd.pm b/dist/PathTools/Cwd.pm index fd24b6e..49cc4c1 100644 --- a/dist/PathTools/Cwd.pm +++ b/dist/PathTools/Cwd.pm @@ -3,7 +3,7 @@ use strict; use Exporter; use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); -$VERSION = '3.55'; +$VERSION = '3.56'; my $xs_version = $VERSION; $VERSION =~ tr/_//; diff --git a/dist/PathTools/Cwd.xs b/dist/PathTools/Cwd.xs index 7206260..9d4dcf0 100644 --- a/dist/PathTools/Cwd.xs +++ b/dist/PathTools/Cwd.xs @@ -1,10 +1,4 @@ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/dist/PathTools/lib/File/Spec.pm b/dist/PathTools/lib/File/Spec.pm index 688ea00..8c77c98 100644 --- a/dist/PathTools/lib/File/Spec.pm +++ b/dist/PathTools/lib/File/Spec.pm @@ -3,7 +3,7 @@ package File::Spec; use strict; use vars qw(@ISA $VERSION); -$VERSION = '3.55'; +$VERSION = '3.56'; $VERSION =~ tr/_//; my %module = (MacOS => 'Mac', diff --git a/dist/PathTools/lib/File/Spec/Cygwin.pm b/dist/PathTools/lib/File/Spec/Cygwin.pm index ab917c5..1b77e6a 100644 --- a/dist/PathTools/lib/File/Spec/Cygwin.pm +++ b/dist/PathTools/lib/File/Spec/Cygwin.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.55'; +$VERSION = '3.56'; $VERSION =~ tr/_//; @ISA = qw(File::Spec::Unix); diff --git a/dist/PathTools/lib/File/Spec/Epoc.pm b/dist/PathTools/lib/File/Spec/Epoc.pm index 8c3b64c..7bc3867 100644 --- a/dist/PathTools/lib/File/Spec/Epoc.pm +++ b/dist/PathTools/lib/File/Spec/Epoc.pm @@ -3,7 +3,7 @@ package File::Spec::Epoc; use strict; use vars qw($VERSION @ISA); -$VERSION = '3.55'; +$VERSION = '3.56'; $VERSION =~ tr/_//; require File::Spec::Unix; diff --git a/dist/PathTools/lib/File/Spec/Functions.pm b/dist/PathTools/lib/File/Spec/Functions.pm index 1ded427..8eafe24 100644 --- a/dist/PathTools/lib/File/Spec/Functions.pm +++ b/dist/PathTools/lib/File/Spec/Functions.pm @@ -5,7 +5,7 @@ use strict; use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION); -$VERSION = '3.55'; +$VERSION = '3.56'; $VERSION =~ tr/_//; require Exporter; diff --git a/dist/PathTools/lib/File/Spec/Mac.pm b/dist/PathTools/lib/File/Spec/Mac.pm index 2b0935b..02cae14 100644 --- a/dist/PathTools/lib/File/Spec/Mac.pm +++ b/dist/PathTools/lib/File/Spec/Mac.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.55'; +$VERSION = '3.56'; $VERSION =~ tr/_//; @ISA = qw(File::Spec::Unix); diff --git a/dist/PathTools/lib/File/Spec/OS2.pm b/dist/PathTools/lib/File/Spec/OS2.pm index 92d95f7..fb8f101 100644 --- a/dist/PathTools/lib/File/Spec/OS2.pm +++ b/dist/PathTools/lib/File/Spec/OS2.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.55'; +$VERSION = '3.56'; $VERSION =~ tr/_//; @ISA = qw(File::Spec::Unix); diff --git a/dist/PathTools/lib/File/Spec/Unix.pm b/dist/PathTools/lib/File/Spec/Unix.pm index 98a232d..f76b29e 100644 --- a/dist/PathTools/lib/File/Spec/Unix.pm +++ b/dist/PathTools/lib/File/Spec/Unix.pm @@ -3,7 +3,7 @@ package File::Spec::Unix; use strict; use vars qw($VERSION); -$VERSION = '3.55'; +$VERSION = '3.56'; my $xs_version = $VERSION; $VERSION =~ tr/_//; diff --git a/dist/PathTools/lib/File/Spec/VMS.pm b/dist/PathTools/lib/File/Spec/VMS.pm index d74c0be..254f524 100644 --- a/dist/PathTools/lib/File/Spec/VMS.pm +++ b/dist/PathTools/lib/File/Spec/VMS.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.55'; +$VERSION = '3.56'; $VERSION =~ tr/_//; @ISA = qw(File::Spec::Unix); diff --git a/dist/PathTools/lib/File/Spec/Win32.pm b/dist/PathTools/lib/File/Spec/Win32.pm index bbaf0e3..53f3854 100644 --- a/dist/PathTools/lib/File/Spec/Win32.pm +++ b/dist/PathTools/lib/File/Spec/Win32.pm @@ -5,7 +5,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.55'; +$VERSION = '3.56'; $VERSION =~ tr/_//; @ISA = qw(File::Spec::Unix); diff --git a/doio.c b/doio.c index 218887d..5f29a6b 100644 --- a/doio.c +++ b/doio.c @@ -2583,11 +2583,5 @@ Perl_vms_start_glob } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/doop.c b/doop.c index 47fea28..c6ee847 100644 --- a/doop.c +++ b/doop.c @@ -1276,11 +1276,5 @@ Perl_do_kv(pTHX) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/dosish.h b/dosish.h index 8b34369..2e4e745 100644 --- a/dosish.h +++ b/dosish.h @@ -184,11 +184,5 @@ #define PERL_NO_DEV_RANDOM /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/dquote_static.c b/dquote_static.c index 801240b..885ba06 100644 --- a/dquote_static.c +++ b/dquote_static.c @@ -344,11 +344,5 @@ S_form_short_octal_warning(pTHX_ } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/dump.c b/dump.c index 0629514..52d897f 100644 --- a/dump.c +++ b/dump.c @@ -2599,11 +2599,5 @@ Perl_debprofdump(pTHX) /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/ext/ExtUtils-Miniperl/lib/ExtUtils/Miniperl.pm b/ext/ExtUtils-Miniperl/lib/ExtUtils/Miniperl.pm index 8dd0f28..61c66df 100644 --- a/ext/ExtUtils-Miniperl/lib/ExtUtils/Miniperl.pm +++ b/ext/ExtUtils-Miniperl/lib/ExtUtils/Miniperl.pm @@ -8,7 +8,7 @@ use vars qw($VERSION @ISA @EXPORT); @ISA = qw(Exporter); @EXPORT = qw(writemain); -$VERSION = '1.04'; +$VERSION = '1.05'; # blead will run this with miniperl, hence we can't use autodie or File::Temp my $temp; @@ -249,10 +249,4 @@ L<ExtUtils::MakeMaker> =cut -# Local variables: -# c-indentation-style: bsd -# c-basic-offset: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/ext/PerlIO-mmap/mmap.pm b/ext/PerlIO-mmap/mmap.pm index 0f666d2..845f2d1 100644 --- a/ext/PerlIO-mmap/mmap.pm +++ b/ext/PerlIO-mmap/mmap.pm @@ -1,7 +1,7 @@ package PerlIO::mmap; use strict; use warnings; -our $VERSION = '0.013'; +our $VERSION = '0.014'; use XSLoader; XSLoader::load(__PACKAGE__, __PACKAGE__->VERSION); diff --git a/ext/PerlIO-mmap/mmap.xs b/ext/PerlIO-mmap/mmap.xs index 6632544..e6d592a 100644 --- a/ext/PerlIO-mmap/mmap.xs +++ b/ext/PerlIO-mmap/mmap.xs @@ -1,10 +1,4 @@ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/ext/XS-APItest/core_or_not.inc b/ext/XS-APItest/core_or_not.inc index 9c1cf56..412074a 100644 --- a/ext/XS-APItest/core_or_not.inc +++ b/ext/XS-APItest/core_or_not.inc @@ -35,9 +35,6 @@ CAT2(sv_setsv_cow_hashkey_, SUFFIX) () { /* * Local variables: * mode: c - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil * End: * * ex: set ts=8 sts=4 sw=4 et: diff --git a/ext/attributes/attributes.pm b/ext/attributes/attributes.pm index 74cfc63..f7af31b 100644 --- a/ext/attributes/attributes.pm +++ b/ext/attributes/attributes.pm @@ -1,6 +1,6 @@ package attributes; -our $VERSION = 0.26; +our $VERSION = 0.27; @EXPORT_OK = qw(get reftype); @EXPORT = (); diff --git a/ext/attributes/attributes.xs b/ext/attributes/attributes.xs index 9c9ec11..d98fd9e 100644 --- a/ext/attributes/attributes.xs +++ b/ext/attributes/attributes.xs @@ -249,11 +249,5 @@ usage: XSRETURN(1); /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/ext/re/re_top.h b/ext/re/re_top.h index e73550f..ce4c716 100644 --- a/ext/re/re_top.h +++ b/ext/re/re_top.h @@ -33,11 +33,5 @@ #define PERL_NO_GET_CONTEXT /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/fakesdio.h b/fakesdio.h index 094fd00..928d37b 100644 --- a/fakesdio.h +++ b/fakesdio.h @@ -123,11 +123,5 @@ #define fgets(s,n,f) _CANNOT _fgets_ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/globals.c b/globals.c index f53a898..14a53a4 100644 --- a/globals.c +++ b/globals.c @@ -34,11 +34,5 @@ #include "perlapi.h" /* bring in PL_force_link_funcs */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/gv.c b/gv.c index 63bdc56..cdfdc8d 100644 --- a/gv.c +++ b/gv.c @@ -3606,11 +3606,5 @@ core_xsub(pTHX_ CV* cv) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/gv.h b/gv.h index 1d59154..a6bb749 100644 --- a/gv.h +++ b/gv.h @@ -289,11 +289,5 @@ Return the CV from the GV. #define gv_SVadd(gv) gv_add_by_type((gv), SVt_NULL) /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/handy.h b/handy.h index 5337c3f..89055c5 100644 --- a/handy.h +++ b/handy.h @@ -2137,11 +2137,5 @@ void Perl_mem_log_del_sv(const SV *sv, const char *filename, const int linenumbe #endif /* HANDY_H */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/hv.c b/hv.c index bb9cb27..1fa6d6f 100644 --- a/hv.c +++ b/hv.c @@ -3698,11 +3698,5 @@ Perl_hv_assert(pTHX_ HV *hv) #endif /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/hv.h b/hv.h index a912476..9533af5 100644 --- a/hv.h +++ b/hv.h @@ -629,11 +629,5 @@ Creates a new HV. The reference count is set to 1. #include "hv_func.h" /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/hv_func.h b/hv_func.h index 24ebf56..708c6c7 100644 --- a/hv_func.h +++ b/hv_func.h @@ -700,11 +700,5 @@ S_perl_hash_murmur_hash_64b (const unsigned char * const seed, const unsigned ch #endif /*compile once*/ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/inline.h b/inline.h index 1124412..46a8cb6 100644 --- a/inline.h +++ b/inline.h @@ -402,11 +402,5 @@ S_sv_only_taint_gmagic(SV *sv) { } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/installman b/installman index 66b7161..ce4b7f3 100755 --- a/installman +++ b/installman @@ -174,9 +174,4 @@ sub pod2man { $packlist->write() unless $opts{notify}; print " Installation complete\n" if $opts{verbose}; -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/installperl b/installperl index 516ae70..5c34264 100755 --- a/installperl +++ b/installperl @@ -809,9 +809,4 @@ sub strip } } -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/iperlsys.h b/iperlsys.h index 39999b0..57160e0 100644 --- a/iperlsys.h +++ b/iperlsys.h @@ -1415,11 +1415,5 @@ struct IPerlSockInfo #endif /* __Inc__IPerl___ */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/lib/File/stat.t b/lib/File/stat.t index 81f75f5..7c9b9cc 100644 --- a/lib/File/stat.t +++ b/lib/File/stat.t @@ -186,9 +186,4 @@ SKIP: done_testing; -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/locale.c b/locale.c index a1fe449..7a4a418 100644 --- a/locale.c +++ b/locale.c @@ -1753,11 +1753,5 @@ Perl_sync_locale(pTHX) /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/malloc.c b/malloc.c index a797e7e..05810b5 100644 --- a/malloc.c +++ b/malloc.c @@ -2362,11 +2362,5 @@ Perl_sbrk(int size) #endif /* ! defined USE_PERL_SBRK */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/mathoms.c b/mathoms.c index 2a65fb4..bcce2ca 100644 --- a/mathoms.c +++ b/mathoms.c @@ -1820,11 +1820,5 @@ END_EXTERN_C #endif /* NO_MATHOMS */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/mg.c b/mg.c index ee3cf29..b03510b 100644 --- a/mg.c +++ b/mg.c @@ -3576,11 +3576,5 @@ Perl_magic_getdebugvar(pTHX_ SV *sv, MAGIC *mg) { } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/mg.h b/mg.h index becef4a..034fd7e 100644 --- a/mg.h +++ b/mg.h @@ -76,11 +76,5 @@ struct magic { #define whichsig(pv) whichsig_pv(pv) /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/mro_core.c b/mro_core.c index 4da9682..25d30d9 100644 --- a/mro_core.c +++ b/mro_core.c @@ -1419,11 +1419,5 @@ XS(XS_mro_method_changed_in) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/mydtrace.h b/mydtrace.h index 5093f46..6e79767 100644 --- a/mydtrace.h +++ b/mydtrace.h @@ -91,11 +91,5 @@ #endif /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/nostdio.h b/nostdio.h index c815fd8..64276aa 100644 --- a/nostdio.h +++ b/nostdio.h @@ -130,11 +130,5 @@ struct _FILE; #endif /*not define EBCDIC */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/numeric.c b/numeric.c index e97bc26..be85adb 100644 --- a/numeric.c +++ b/numeric.c @@ -1638,11 +1638,5 @@ Perl_signbit(NV x) { #endif /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/op.c b/op.c index f4ea5bc..a07eb05 100644 --- a/op.c +++ b/op.c @@ -14486,11 +14486,5 @@ const_av_xsub(pTHX_ CV* cv) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/op.h b/op.h index 624fa16..9e6bb43 100644 --- a/op.h +++ b/op.h @@ -1045,11 +1045,5 @@ Sets the sibling of o to sib /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/pad.c b/pad.c index 057a502..2d33779 100644 --- a/pad.c +++ b/pad.c @@ -2892,11 +2892,5 @@ Perl_padname_dup(pTHX_ PADNAME *src, CLONE_PARAMS *param) #endif /* USE_ITHREADS */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/pad.h b/pad.h index 555bc65..1f86248 100644 --- a/pad.h +++ b/pad.h @@ -515,11 +515,5 @@ of a string/length pair. Perl_pad_findmy_pvn(aTHX_ STR_WITH_LEN(name), flags) /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/parser.h b/parser.h index ffc60d3..96ab4f5 100644 --- a/parser.h +++ b/parser.h @@ -149,11 +149,5 @@ enum { }; /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/perl.c b/perl.c index afa2107..086645b 100644 --- a/perl.c +++ b/perl.c @@ -5074,11 +5074,5 @@ Perl_xs_boot_epilog(pTHX_ const U32 ax) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/perl.h b/perl.h index 8c05ff1..50eca37 100644 --- a/perl.h +++ b/perl.h @@ -6660,11 +6660,5 @@ extern void moncontrol(int); #endif /* Include guard */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/perldtrace.d b/perldtrace.d index 0fdb7ea..6a9e9de 100644 --- a/perldtrace.d +++ b/perldtrace.d @@ -16,10 +16,5 @@ provider perl { }; /* - * Local Variables: - * tab-width: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/perlio.c b/perlio.c index e5ebfd9..92fa2be 100644 --- a/perlio.c +++ b/perlio.c @@ -5234,11 +5234,5 @@ Perl_noperl_die(const char* pat, ...) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/perlio.h b/perlio.h index 9398529..55e0ce3 100644 --- a/perlio.h +++ b/perlio.h @@ -367,11 +367,5 @@ END_EXTERN_C #endif /* _PERLIO_H */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/perliol.h b/perliol.h index 87b1fc7..b8c0eae 100644 --- a/perliol.h +++ b/perliol.h @@ -289,11 +289,5 @@ PERL_EXPORT_C IV PerlIOUtf8_pushed(pTHX_ PerlIO *f, const char *mode, SV #endif /* _PERLIOL_H */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/perlsdio.h b/perlsdio.h index 7dcd394..cb25577 100644 --- a/perlsdio.h +++ b/perlsdio.h @@ -139,11 +139,5 @@ END_EXTERN_C #endif /* PERLIO_IS_STDIO */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/perly.c b/perly.c index 48f0e80..abb4d4e 100644 --- a/perly.c +++ b/perly.c @@ -577,11 +577,5 @@ Perl_yyparse (pTHX_ int gramtype) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/pod/buildtoc b/pod/buildtoc index cbdec61..acb8cf6 100644 --- a/pod/buildtoc +++ b/pod/buildtoc @@ -275,9 +275,4 @@ sub unitem { $initem = 0; } -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 0577a87..30960e6 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -123,6 +123,26 @@ L<Module::CoreList> has been upgraded from version 5.20150320 to 5.20150420. Updated to cover the latest releases of Perl. +=item * + +L<ExtUtils::Miniperl> has been upgraded from version 1.04 to 1.05. + +=item * + +FindExt has been upgraded from version 1.02 to 1.03. + +=item * + +L<Cwd> has been upgraded from version 3.55 to 3.56. + +=item * + +L<PerlIO::mmap> has been upgraded from version 0.013 to 0.014. + +=item * + +L<attributes> has been upgraded from version 0.26 to 0.27. + =back =head2 Removed Modules and Pragmata diff --git a/pp.c b/pp.c index ec0f9d3..42f156a 100644 --- a/pp.c +++ b/pp.c @@ -6500,11 +6500,5 @@ PP(pp_anonconst) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/pp.h b/pp.h index 2636dbf..003d7af 100644 --- a/pp.h +++ b/pp.h @@ -528,11 +528,5 @@ True if this op will be the return value of an lvalue subroutine #endif /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/pp_ctl.c b/pp_ctl.c index 6726802..c4f4d64 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -5621,11 +5621,5 @@ S_run_user_filter(pTHX_ int idx, SV *buf_sv, int maxlen) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/pp_hot.c b/pp_hot.c index 6a3b6e0..f2468f9 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -3611,11 +3611,5 @@ PP(pp_method_redir_super) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/pp_pack.c b/pp_pack.c index 2d1a208..06adade 100644 --- a/pp_pack.c +++ b/pp_pack.c @@ -3106,11 +3106,5 @@ PP(pp_pack) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/pp_sort.c b/pp_sort.c index 54132b4..d21a4ea 100644 --- a/pp_sort.c +++ b/pp_sort.c @@ -2015,11 +2015,5 @@ S_amagic_cmp_locale(pTHX_ SV *const str1, SV *const str2) #endif /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/pp_sys.c b/pp_sys.c index 2a9e24c..7c20f52 100644 --- a/pp_sys.c +++ b/pp_sys.c @@ -5728,11 +5728,5 @@ lockf_emulate_flock(int fd, int operation) #endif /* LOCKF_EMULATE_FLOCK */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/regcomp.c b/regcomp.c index 8c3dffd..50a9e6c 100644 --- a/regcomp.c +++ b/regcomp.c @@ -18174,11 +18174,5 @@ S_dumpuntil(pTHX_ const regexp *r, const regnode *start, const regnode *node, #endif /* DEBUGGING */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/regcomp.h b/regcomp.h index 244c72f..f418086 100644 --- a/regcomp.h +++ b/regcomp.h @@ -999,11 +999,5 @@ typedef enum { } bound_type; /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/regexec.c b/regexec.c index cd03a4a..7247259 100644 --- a/regexec.c +++ b/regexec.c @@ -9043,11 +9043,5 @@ S_to_byte_substr(pTHX_ regexp *prog) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/regexp.h b/regexp.h index eb114e9..04eeba9 100644 --- a/regexp.h +++ b/regexp.h @@ -848,11 +848,5 @@ typedef struct regmatch_slab { /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/run.c b/run.c index 8f0224a..1a62e9d 100644 --- a/run.c +++ b/run.c @@ -48,11 +48,5 @@ Perl_runops_standard(pTHX) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/scope.c b/scope.c index 89b4e6e..5699d7c 100644 --- a/scope.c +++ b/scope.c @@ -1402,11 +1402,5 @@ Perl_cx_dump(pTHX_ PERL_CONTEXT *cx) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/scope.h b/scope.h index c6a44ba..97ef3fa 100644 --- a/scope.h +++ b/scope.h @@ -341,11 +341,5 @@ STMT_START { \ #define save_op() save_pushptr((void *)(PL_op), SAVEt_OP) /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/sv.c b/sv.c index 341d591..4a818f2 100644 --- a/sv.c +++ b/sv.c @@ -16226,11 +16226,5 @@ Perl_report_uninit(pTHX_ const SV *uninit_sv) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/sv.h b/sv.h index 10f9449..f23ccfe 100644 --- a/sv.h +++ b/sv.h @@ -2268,11 +2268,5 @@ Evaluates I<sv> more than once. Sets I<len> to 0 if C<SvOOK(sv)> is false. #define SV_CONSTS_COUNT 35 /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/t/op/attrproto.t b/t/op/attrproto.t index 8e69e33..464081f 100644 --- a/t/op/attrproto.t +++ b/t/op/attrproto.t @@ -132,8 +132,4 @@ is @warnings, 0, "Malformed prototype isn't just a warning"; is @warnings, 0, "No more warnings"; } -# Local variables: -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/t/op/groups.t b/t/op/groups.t index 008aae8..754690c 100644 --- a/t/op/groups.t +++ b/t/op/groups.t @@ -402,8 +402,4 @@ sub uniq { @_; } -# Local variables: -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/t/porting/FindExt.t b/t/porting/FindExt.t index b3f9c31..32c331e 100644 --- a/t/porting/FindExt.t +++ b/t/porting/FindExt.t @@ -75,9 +75,4 @@ unless (join (' ', sort split ' ', $Config{extensions}) sort @found_built); } -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/t/porting/utils.t b/t/porting/utils.t index 9842ea2..475380d 100644 --- a/t/porting/utils.t +++ b/t/porting/utils.t @@ -87,9 +87,4 @@ foreach my $victim (@victims) { } } -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/taint.c b/taint.c index 60a9a54..b357628 100644 --- a/taint.c +++ b/taint.c @@ -185,11 +185,5 @@ Perl_taint_env(pTHX) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/thread.h b/thread.h index 43932fb..1fb1cc6 100644 --- a/thread.h +++ b/thread.h @@ -431,11 +431,5 @@ #endif /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/toke.c b/toke.c index 610db62..ddc2431 100644 --- a/toke.c +++ b/toke.c @@ -11737,11 +11737,5 @@ Perl_parse_subsignature(pTHX) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/universal.c b/universal.c index f05f40a..1b4e550 100644 --- a/universal.c +++ b/universal.c @@ -1124,11 +1124,5 @@ Perl_boot_core_UNIVERSAL(pTHX) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/unixish.h b/unixish.h index c129ed1..1eb6785 100644 --- a/unixish.h +++ b/unixish.h @@ -147,11 +147,5 @@ #endif /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/utf8.c b/utf8.c index 184ed31..b9455bc 100644 --- a/utf8.c +++ b/utf8.c @@ -4208,11 +4208,5 @@ Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/utf8.h b/utf8.h index 8418055..73e9588 100644 --- a/utf8.h +++ b/utf8.h @@ -674,11 +674,5 @@ machines) is a valid UTF-8 character. #endif /* H_UTF8 */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/utfebcdic.h b/utfebcdic.h index a4f5fb5..edbe6aa 100644 --- a/utfebcdic.h +++ b/utfebcdic.h @@ -217,11 +217,5 @@ END_EXTERN_C #define MAX_UTF8_TWO_BYTE 0x3FF /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/util.c b/util.c index 28be5ca..e4e684c 100644 --- a/util.c +++ b/util.c @@ -6493,11 +6493,5 @@ Perl_dump_c_backtrace(pTHX_ PerlIO* fp, int depth, int skip) #endif /* #ifdef USE_C_BACKTRACE */ /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/util.h b/util.h index 6e63f3b..0d41ebc 100644 --- a/util.h +++ b/util.h @@ -230,11 +230,5 @@ means arg not present, 1 is empty string/null byte */ #endif /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */ diff --git a/win32/FindExt.pm b/win32/FindExt.pm index 6e62838..c0da7ee 100644 --- a/win32/FindExt.pm +++ b/win32/FindExt.pm @@ -1,6 +1,6 @@ package FindExt; -our $VERSION = '1.02'; +our $VERSION = '1.03'; use strict; use warnings; @@ -132,9 +132,4 @@ sub scan_ext } 1; -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: diff --git a/write_buildcustomize.pl b/write_buildcustomize.pl index 57a547c..5d819b5 100644 --- a/write_buildcustomize.pl +++ b/write_buildcustomize.pl @@ -101,9 +101,4 @@ unlink $file or warn "Can't unlink $file after error: $!"; die $error; -# Local variables: -# cperl-indent-level: 4 -# indent-tabs-mode: nil -# End: -# # ex: set ts=8 sts=4 sw=4 et: -- Perl5 Master Repository
