summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-04-06 19:50:12 +0000
committerNicholas Clark <nick@ccl4.org>2007-04-06 19:50:12 +0000
commitc2b1997a64b4faf9c52a72614bfeb0a1f6eeeba8 (patch)
tree3a5106000929fc04e6f93fc2d6887d2a74f610fa /op.h
parent494364e0465f3123bb285c25f7aea65e01c763c4 (diff)
downloadperl-c2b1997a64b4faf9c52a72614bfeb0a1f6eeeba8.tar.gz
Remove op_pmnext from PMOPs, and instead store the list for reset as
an array hanging from the mg_ptr of the symbol table magic. (Previously the linked list head was in the mg_obj member) p4raw-id: //depot/perl@30853
Diffstat (limited to 'op.h')
-rw-r--r--op.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/op.h b/op.h
index 0586592e6a..0dee522a40 100644
--- a/op.h
+++ b/op.h
@@ -320,7 +320,6 @@ struct pmop {
OP * op_last;
OP * op_pmreplroot; /* (type is really union {OP*,GV*,PADOFFSET}) */
OP * op_pmreplstart;
- PMOP * op_pmnext; /* list of all scanpats */
#ifdef USE_ITHREADS
IV op_pmoffset;
#else