diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-04-21 15:27:36 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-04-21 15:27:36 +0000 |
commit | 73c86719a39a0d80ec8e3045934c2fe6b43196e7 (patch) | |
tree | 48986036ff8c315a49908fabf4f08cc962dbea26 /thrdvar.h | |
parent | 3e5ba712fa2ae285ead83a725afad2d89c3fa796 (diff) | |
download | perl-73c86719a39a0d80ec8e3045934c2fe6b43196e7.tar.gz |
Integrate:
[ 19263]
Unused variables.
[ 19264]
UTF8 regexp patch from Inaba Hiroto.
[ 19266]
Subject: [PATCH] Re: any takers for this Storable bug?
From: Enache Adrian <enache@rdslink.ro>
Date: Wed, 16 Apr 2003 21:11:11 +0300
Message-ID: <20030416181111.GA6687@ratsnest.hole>
ams had already fixed the bug by #19227, but take the
test case.
[ 19268]
Subject: [PATCH] allow recursive FETCHes
From: Dave Mitchell <davem@fdgroup.com>
Date: Mon, 7 Apr 2003 10:00:41 +0100
Message-ID: <20030407100041.A1617@fdgroup.com>
[ 19275]
Restore the two variables retired by the change #19268
(for binary backward compatibility)
p4raw-link: @19275 on //depot/perl: 195c09c3629c17448fb78757b0012553fb092895
p4raw-link: @19268 on //depot/perl: dd28f7bb7eebdb0b562c940b3c4f89457e829ea6
p4raw-link: @19266 on //depot/perl: f4193312177189f6e5e8caee032cd298198ec91f
p4raw-link: @19264 on //depot/perl: 14ebb1a2c3090470663d3e2baaf3787edad7c9a7
p4raw-link: @19263 on //depot/perl: d60ecbe5204b1d5c06464db2b54d51236d8a45d0
p4raw-id: //depot/maint-5.8/perl@19292
p4raw-integrated: from //depot/perl@19291 'copy in'
ext/Storable/t/st-dump.pl (@16953..) t/op/tie.t (@18889..)
t/op/pat.t (@19210..) 'edit in' embedvar.h perlapi.h thrdvar.h
(@19268..) 'merge in' embed.fnc (@19214..) av.c dump.c embed.h
hv.c perl.c proto.h regcomp.c sv.h (@19242..)
p4raw-integrated: from //depot/perl@19268 'merge in' sv.c (@19265..)
p4raw-integrated: from //depot/perl@19266 'copy in'
ext/Storable/t/tied.t (@16953..)
p4raw-integrated: from //depot/perl@19263 'copy in' perlio.c (@19203..)
'merge in' universal.c (@19242..)
Diffstat (limited to 'thrdvar.h')
-rw-r--r-- | thrdvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -144,9 +144,9 @@ PERLVARI(Tprotect, protect_proc_t, MEMBER_TO_FPTR(Perl_default_protect)) PERLVARI(Terrors, SV *, Nullsv) /* outstanding queued errors */ /* statics "owned" by various functions */ -PERLVAR(Tav_fetch_sv, SV *) /* owned by av_fetch() */ -PERLVAR(Thv_fetch_sv, SV *) /* owned by hv_fetch() */ -PERLVAR(Thv_fetch_ent_mh, HE) /* owned by hv_fetch_ent() */ +PERLVAR(Tav_fetch_sv, SV *) /* unused as of change #19268 */ +PERLVAR(Thv_fetch_sv, SV *) /* unused as of change #19268 */ +PERLVAR(Thv_fetch_ent_mh, HE*) /* owned by hv_fetch_ent() */ PERLVAR(Tmodcount, I32) /* how much mod()ification in assignment? */ |