diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-05 22:33:12 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-05 22:33:12 +0000 |
commit | d2f13c598f9812cd520097e22d819d1b9f7b0cb6 (patch) | |
tree | 51c2739d4fe37c20fc90e087816461a35cf48e5a /pp_hot.c | |
parent | 62a1a1efb41483ae8589f3158be0ce9a1c21e8e2 (diff) | |
download | perl-d2f13c598f9812cd520097e22d819d1b9f7b0cb6.tar.gz |
Make REGEXP a type distinct from SV. (Much like AV, CV, GV, HV).
p4raw-id: //depot/perl@32861
Diffstat (limited to 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1199,7 +1199,7 @@ PP(pp_qr) /* This RV is about to own a reference to the regexp. (In addition to the reference already owned by the PMOP. */ ReREFCNT_inc(rx); - SvRV_set(rv, rx); + SvRV_set(rv, (SV*) rx); SvROK_on(rv); if (pkg) { |