summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-01-13 14:05:08 +0000
committerNicholas Clark <nick@ccl4.org>2005-01-13 14:05:08 +0000
commit241d1a3bc2de8fb12dfbcb48afd9660bc9218a12 (patch)
treefc5a9e4f74a530750cd790347250207d3b4d16a8
parentbd7017d37d1ea75ed228b98d66032e165497283f (diff)
downloadperl-241d1a3bc2de8fb12dfbcb48afd9660bc9218a12.tar.gz
Update copyright years. Add an editor block while passing by.
p4raw-id: //depot/perl@23789
-rw-r--r--pp_ctl.c12
-rw-r--r--pp_hot.c12
-rw-r--r--pp_sort.c12
-rw-r--r--pp_sys.c12
-rw-r--r--regcomp.c11
-rw-r--r--scope.c12
-rw-r--r--sv.c11
-rw-r--r--universal.c12
8 files changed, 86 insertions, 8 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 06f5c0593b..7252edbaa2 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -1,7 +1,7 @@
/* pp_ctl.c
*
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- * 2000, 2001, 2002, 2003, 2004, by Larry Wall and others
+ * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -3926,3 +3926,13 @@ S_path_is_absolute(pTHX_ char *name)
else
return FALSE;
}
+
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+*/
diff --git a/pp_hot.c b/pp_hot.c
index 6855552f29..22875afd04 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -1,7 +1,7 @@
/* pp_hot.c
*
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- * 2000, 2001, 2002, 2003, 2004, by Larry Wall and others
+ * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -3140,3 +3140,13 @@ S_method_common(pTHX_ SV* meth, U32* hashp)
}
return isGV(gv) ? (SV*)GvCV(gv) : (SV*)gv;
}
+
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+*/
diff --git a/pp_sort.c b/pp_sort.c
index 69814aebbc..da019d0a07 100644
--- a/pp_sort.c
+++ b/pp_sort.c
@@ -1,7 +1,7 @@
/* pp_sort.c
*
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- * 2000, 2001, 2002, 2003, 2004, by Larry Wall and others
+ * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -1918,3 +1918,13 @@ amagic_cmp_locale(pTHX_ register SV *str1, register SV *str2)
}
return sv_cmp_locale(str1, str2);
}
+
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+*/
diff --git a/pp_sys.c b/pp_sys.c
index 419db0e22c..dd3b9ffe9e 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -1,7 +1,7 @@
/* pp_sys.c
*
* Copyright (C) 1995, 1996, 1997, 1998, 1999,
- * 2000, 2001, 2002, 2003, 2004, by Larry Wall and others
+ * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -5869,3 +5869,13 @@ lockf_emulate_flock(int fd, int operation)
}
#endif /* LOCKF_EMULATE_FLOCK */
+
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+*/
diff --git a/regcomp.c b/regcomp.c
index 6b34346fd9..a2959a3a99 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -80,7 +80,7 @@
**** Alterations to Henry's code are...
****
**** Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- **** 2000, 2001, 2002, 2003, by Larry Wall and others
+ **** 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
****
**** You may distribute under the terms of either the GNU General Public
**** License or the Artistic License, as specified in the README file.
@@ -5150,3 +5150,12 @@ clear_re(pTHX_ void *r)
ReREFCNT_dec((regexp *)r);
}
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+*/
diff --git a/scope.c b/scope.c
index fe2ceca7a5..c158544f63 100644
--- a/scope.c
+++ b/scope.c
@@ -1,7 +1,7 @@
/* scope.c
*
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- * 2000, 2001, 2002, 2003, 2004, by Larry Wall and others
+ * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -1147,3 +1147,13 @@ Perl_cx_dump(pTHX_ PERL_CONTEXT *cx)
}
#endif /* DEBUGGING */
}
+
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+*/
diff --git a/sv.c b/sv.c
index 470d483f64..b1edb2fc62 100644
--- a/sv.c
+++ b/sv.c
@@ -1,7 +1,7 @@
/* sv.c
*
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- * 2000, 2001, 2002, 2003, 2004, by Larry Wall and others
+ * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -12403,3 +12403,12 @@ Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
return ret;
}
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+*/
diff --git a/universal.c b/universal.c
index 829952a6d0..be4f37e71f 100644
--- a/universal.c
+++ b/universal.c
@@ -1,7 +1,7 @@
/* universal.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
- * by Larry Wall and others
+ * 2005, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -955,3 +955,13 @@ XS(XS_Internals_HvREHASH) /* Subject to change */
}
Perl_croak(aTHX_ "Internals::HvREHASH $hashref");
}
+
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+*/