diff options
author | Reini Urban <rurban@x-ray.at> | 2008-06-08 18:17:32 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-06-08 15:37:48 +0000 |
commit | 7948fc082b7916e5f602700f36d83fdcf421314c (patch) | |
tree | 3d456686816014bf4f822ebc2de128e0ca922397 /op.h | |
parent | 603aa20df51288786331f1d6680081156c2ce5a9 (diff) | |
download | perl-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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |