Change 11303 by jhi@alpha on 2001/07/12 12:46:20
Cut-and-pasto in #11298.
Affected files ...
... //depot/perl/ext/ByteLoader/bytecode.h#21 edit
Differences ...
==== //depot/perl/ext/ByteLoader/bytecode.h#21 (text) ====
Index: perl/ext/ByteLoader/bytecode.h
--- perl/ext/ByteLoader/bytecode.h.~1~ Thu Jul 12 07:00:05 2001
+++ perl/ext/ByteLoader/bytecode.h Thu Jul 12 07:00:05 2001
@@ -132,8 +132,8 @@
hv_store((HV*)sv, bstate->bs_pv.xpv_pv, bstate->bs_pv.xpv_cur, arg, 0)
#define BSET_pv_free(pv) Safefree(pv.xpv_pv)
#define BSET_pregcomp(o, arg) \
- (PM_SETRE((((PMOP*)o), arg ? \
- CALLREGCOMP(aTHX_ arg, arg + bstate->bs_pv.xpv_cur, ((PMOP*)o)) : 0)))
+ (PM_SETRE(((PMOP*)o), (arg ? \
+ CALLREGCOMP(aTHX_ arg, arg + bstate->bs_pv.xpv_cur, ((PMOP*)o)) : 0)))
#define BSET_newsv(sv, arg) \
STMT_START { \
sv = (arg == SVt_PVAV ? (SV*)newAV() : \
End of Patch.