diff options
author | Larry Wall <larry@netlabs.com> | 1993-11-10 00:00:00 +0000 |
---|---|---|
committer | Larry Wall <larry@netlabs.com> | 1993-11-10 00:00:00 +0000 |
commit | 463ee0b2acbd047c27e8b5393cdd8398881824c5 (patch) | |
tree | ae17d9179fc861ae5fc5a86da9139631530cb6fe /cop.h | |
parent | 93a17b20b6d176db3f04f51a63b0a781e5ffd11c (diff) | |
download | perl-463ee0b2acbd047c27e8b5393cdd8398881824c5.tar.gz |
perl 5.0 alpha 4
[editor's note: the sparc executables have not been included, and
emacs backup files have been removed. This was reconstructed from a
tarball found on the September 1994 InfoMagic CD; the date of this is
approximate]
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -68,7 +68,7 @@ struct cop { struct block_sub { CV * cv; GV * gv; - GV * defgv; + GV * dfoutgv; AV * savearray; AV * argarray; AV * comppad; @@ -85,7 +85,7 @@ struct block_sub { #define PUSHFORMAT(cx) \ cx->blk_sub.cv = cv; \ cx->blk_sub.gv = gv; \ - cx->blk_sub.defgv = defoutgv; \ + cx->blk_sub.dfoutgv = defoutgv; \ cx->blk_sub.hasargs = 0; #define POPSUB(cx) \ @@ -95,11 +95,11 @@ struct block_sub { } \ if (!(CvDEPTH(cx->blk_sub.cv) = cx->blk_sub.olddepth)) { \ if (CvDELETED(cx->blk_sub.cv)) \ - cv_free(cx->blk_sub.cv); \ + sv_free((SV*)cx->blk_sub.cv); \ } #define POPFORMAT(cx) \ - defoutgv = cx->blk_sub.defgv; + defoutgv = cx->blk_sub.dfoutgv; /* eval context */ struct block_eval { |