diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-09-29 16:57:23 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-09-29 16:57:23 +0000 |
commit | 2ddcc7aa6c936ba8e7a9703319dfd8959bb54574 (patch) | |
tree | b71ca26eb63d153ac3532c533e89b09266239001 /pp.c | |
parent | 8f95159f0f6f551c08c5f6e1a4d8807b332bc21a (diff) | |
download | perl-2ddcc7aa6c936ba8e7a9703319dfd8959bb54574.tar.gz |
Re-introduce the changes from change 68 (runops becomes a
function pointer and sv_bless3 for '~'-magic) which got lost
during the preparation for the maint-merge.
p4raw-id: //depot/perl@78
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -426,7 +426,7 @@ PP(pp_bless) else stash = gv_stashsv(POPs, TRUE); - (void)sv_bless(TOPs, stash); + (void)sv_bless3(TOPs, stash, TRUE); RETURN; } |