summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-10-03 15:23:25 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-10-03 15:23:25 +0000
commit5d3fdfebb3d34f909dfbefe2c2cdf38bab171cf9 (patch)
tree50749a36a71dfa32497380d62e7fb1f4d68180d6 /pp.c
parentfba3b22e783d72569126ff6fe76f3cb6cd1f043b (diff)
downloadperl-5d3fdfebb3d34f909dfbefe2c2cdf38bab171cf9.tar.gz
Back out sv_bless3 change which made pp_bless zap '~'-magic.
p4raw-id: //depot/perl@104
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index bc0d6231c3..83ca0e50e0 100644
--- a/pp.c
+++ b/pp.c
@@ -426,7 +426,7 @@ PP(pp_bless)
else
stash = gv_stashsv(POPs, TRUE);
- (void)sv_bless3(TOPs, stash, TRUE);
+ (void)sv_bless(TOPs, stash);
RETURN;
}