diff options
author | Stephen McCamant <smcc@mit.edu> | 1997-12-20 09:16:14 -0600 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-03-02 03:28:28 +0000 |
commit | 161b7d1635bc830b9c733355ab423626eadf9ae9 (patch) | |
tree | a4910bbe25ce9e9991920dbbf1c82792dfc950d8 /scope.h | |
parent | f3ea7b5ee70397733e54550d64ca43f4288e744f (diff) | |
download | perl-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.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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() |