summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorReini Urban <rurban@x-ray.at>2009-12-13 08:06:43 +0100
committerRafael Garcia-Suarez <rgs@consttype.org>2009-12-13 15:56:15 +0100
commit8622e0e2540f3d8fde9f0f9cd0d094a30ab8a4cf (patch)
treef650d72986a3d49741180e261059d73572708b5f /cop.h
parent5270d770bca421d596c01c6a2ac5038bb781ff93 (diff)
downloadperl-8622e0e2540f3d8fde9f0f9cd0d094a30ab8a4cf.tar.gz
Eliminate OP_SETSTATE from cop.h header
It had been added with change 3728 to track linenumbers in optimized else, disabled by change 4309, and removed with change 33072. Bump copyright, latest change was "Fix MULTICALL in List-Util" 2009-03-07 with commit 1bbbfc50
Diffstat (limited to 'cop.h')
-rw-r--r--cop.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cop.h b/cop.h
index 03483245f4..13ce794ce2 100644
--- a/cop.h
+++ b/cop.h
@@ -1,13 +1,13 @@
/* cop.h
*
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
- * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
+ * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 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.
*
- * Control ops (cops) are one of the three ops OP_NEXTSTATE, OP_DBSTATE,
- * and OP_SETSTATE that (loosely speaking) are separate statements.
+ * Control ops (cops) are one of the two ops OP_NEXTSTATE and OP_DBSTATE,
+ * that (loosely speaking) are separate statements.
* They hold information important for lexical state and error reporting.
* At run time, PL_curcop is set to point to the most recently executed cop,
* and thus can be used to determine our current state.