diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-07-06 16:21:40 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-07-07 12:52:36 +0200 |
commit | 47be8fd0cb19da6ff1bca5139c2b2998b00c3ce4 (patch) | |
tree | 605f6c218f6c3c9cc6354951d0a41af25e3380bf /miniperlmain.c | |
parent | a78951c8adf2702a1136eae4f11657b13ee6697f (diff) | |
download | perl-47be8fd0cb19da6ff1bca5139c2b2998b00c3ce4.tar.gz |
Move the "editor block" from miniperlmain.c to ExtUtils::Miniperl
As miniperlmain.c is now generated by ExtUtils::Miniperl (and not the other
way round), there's no reason to have an editor block in the generated file,
as it's not intended to be edited. Instead, add the "generated from" and
read-only headers to miniperlmain.c
Diffstat (limited to 'miniperlmain.c')
-rw-r--r-- | miniperlmain.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/miniperlmain.c b/miniperlmain.c index 2fd590c895..7b96e482fa 100644 --- a/miniperlmain.c +++ b/miniperlmain.c @@ -1,3 +1,9 @@ +/* -*- buffer-read-only: t -*- + !!!!!!! DO NOT EDIT THIS FILE !!!!!!! + This file is built by regen/miniperlmain.pl and ExtUtils::Miniperl. + Any changes made here will be lost! + */ + /* miniperlmain.c * * Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, @@ -159,12 +165,4 @@ xs_init(pTHX) PERL_UNUSED_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: - */ +/* ex: set ro: */ |