summaryrefslogtreecommitdiff
path: root/scope.h
diff options
context:
space:
mode:
authorStephen McCamant <smcc@mit.edu>1997-12-20 09:16:14 -0600
committerGurusamy Sarathy <gsar@cpan.org>1998-03-02 03:28:28 +0000
commit161b7d1635bc830b9c733355ab423626eadf9ae9 (patch)
treea4910bbe25ce9e9991920dbbf1c82792dfc950d8 /scope.h
parentf3ea7b5ee70397733e54550d64ca43f4288e744f (diff)
downloadperl-161b7d1635bc830b9c733355ab423626eadf9ae9.tar.gz
[win32] this one with adjusted test numbers
Message-Id: <m0xjWFq-000EZeC@alias-2.pr.mcs.net> Subject: [PERL] [PATCH] Fix local $a[0] and local $h{a} p4raw-id: //depot/win32/perl@614
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/scope.h b/scope.h
index 3c38a1ffc3..580a7305b0 100644
--- a/scope.h
+++ b/scope.h
@@ -22,6 +22,8 @@
#define SAVEt_REGCONTEXT 21
#define SAVEt_STACK_POS 22
#define SAVEt_I16 23
+#define SAVEt_AELEM 24
+#define SAVEt_HELEM 25
#define SAVEt_OP 24
#define SSCHECK(need) if (savestack_ix + need > savestack_max) savestack_grow()