summaryrefslogtreecommitdiff
path: root/embed.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 /embed.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 'embed.h')
-rw-r--r--embed.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/embed.h b/embed.h
index 182afca6d4..7a44131ee5 100644
--- a/embed.h
+++ b/embed.h
@@ -1192,6 +1192,7 @@
#define ck_unpack Perl_ck_unpack
#define is_handle_constructor S_is_handle_constructor
#define is_list_assignment S_is_list_assignment
+#define forget_pmop S_forget_pmop
#define cop_free S_cop_free
#define modkids S_modkids
#define scalarboolean S_scalarboolean
@@ -3429,6 +3430,7 @@
#define ck_unpack(a) Perl_ck_unpack(aTHX_ a)
#define is_handle_constructor S_is_handle_constructor
#define is_list_assignment(a) S_is_list_assignment(aTHX_ a)
+#define forget_pmop(a,b) S_forget_pmop(aTHX_ a,b)
#define cop_free(a) S_cop_free(aTHX_ a)
#define modkids(a,b) S_modkids(aTHX_ a,b)
#define scalarboolean(a) S_scalarboolean(aTHX_ a)