summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorReini Urban <rurban@x-ray.at>2008-06-08 18:17:32 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-06-08 15:37:48 +0000
commit7948fc082b7916e5f602700f36d83fdcf421314c (patch)
tree3d456686816014bf4f822ebc2de128e0ca922397 /op.h
parent603aa20df51288786331f1d6680081156c2ce5a9 (diff)
downloadperl-7948fc082b7916e5f602700f36d83fdcf421314c.tar.gz
Re: [PATCH] readable assertion names, now the rest
From: "Reini Urban" <rurban@x-ray.at> Message-ID: <6910a60806080717h1aaaef1fh425a2ef21a62c9ed@mail.gmail.com> p4raw-id: //depot/perl@34030
Diffstat (limited to 'op.h')
-rw-r--r--op.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/op.h b/op.h
index a5cd625e28..e263a9c5ea 100644
--- a/op.h
+++ b/op.h
@@ -340,9 +340,9 @@ struct pmop {
/* BEWARE - something that calls this macro passes (r) which has a side
effect. */
#define PM_SETRE(o,r) STMT_START { \
- const REGEXP *const whap = (r); \
- assert(whap); \
- PL_regex_pad[(o)->op_pmoffset] = (SV*)whap; \
+ const REGEXP *const _pm_setre = (r); \
+ assert(_pm_setre); \
+ PL_regex_pad[(o)->op_pmoffset] = (SV*)_pm_setre; \
} STMT_END
#else
#define PM_GETRE(o) ((o)->op_pmregexp)