summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2011-01-03 12:56:51 +0000
committerDavid Mitchell <davem@iabyn.com>2011-01-03 12:56:51 +0000
commitb5c08826d5b438cc010d2e862af0fc8591a8141f (patch)
treecec3a7f280a722e133ad116a40e7d5a0aab5afbf /pp.h
parent4f5f5b0586ae4cf3d1af0d5506454c39c77e049f (diff)
downloadperl-b5c08826d5b438cc010d2e862af0fc8591a8141f.tar.gz
reindent tryAMAGICunTARGET after previous change
Diffstat (limited to 'pp.h')
-rw-r--r--pp.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/pp.h b/pp.h
index d60666af6d..f3368f76e6 100644
--- a/pp.h
+++ b/pp.h
@@ -431,28 +431,28 @@ Does not use C<TARG>. See also C<XPUSHu>, C<mPUSHu> and C<PUSHu>.
/* No longer used in core. Use AMG_CALLunary instead */
#define AMG_CALLun(sv,meth) AMG_CALLunary(sv, CAT2(meth,_amg))
-#define tryAMAGICunTARGET(meth, shift, jump) \
+#define tryAMAGICunTARGET(meth, shift, jump) \
STMT_START { \
- dATARGET; \
- dSP; \
- SV *tmpsv; \
- SV *arg= sp[shift]; \
- if (SvAMAGIC(arg) && \
- (tmpsv = amagic_call(arg, &PL_sv_undef, meth, \
- AMGf_noright | AMGf_unary))) { \
- SPAGAIN; \
- sp += shift; \
- sv_setsv(TARG, tmpsv); \
- if (opASSIGN) \
- sp--; \
- SETTARG; \
- PUTBACK; \
- if (jump) { \
- PL_markstack_ptr--; \
- return NORMAL->op_next->op_next; \
- } \
- return NORMAL; \
+ dATARGET; \
+ dSP; \
+ SV *tmpsv; \
+ SV *arg= sp[shift]; \
+ if (SvAMAGIC(arg) && \
+ (tmpsv = amagic_call(arg, &PL_sv_undef, meth, \
+ AMGf_noright | AMGf_unary))) { \
+ SPAGAIN; \
+ sp += shift; \
+ sv_setsv(TARG, tmpsv); \
+ if (opASSIGN) \
+ sp--; \
+ SETTARG; \
+ PUTBACK; \
+ if (jump) { \
+ PL_markstack_ptr--; \
+ return NORMAL->op_next->op_next; \
} \
+ return NORMAL; \
+ } \
} STMT_END
/* This is no longer used anywhere in the core. You might wish to consider