X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=run.c;h=eb465da57cdd65c45cc91fe517936db4d5b43f3a;hb=fd1ad2d043b2bf852bb145f97f22044a4e342b05;hp=ab0d8f28944737e71880c98bb20f7b0a56425599;hpb=54ca4ee7252684545d9524460bab88037e5f584b;p=p5sagit%2Fp5-mst-13.2.git diff --git a/run.c b/run.c index ab0d8f2..eb465da 100644 --- a/run.c +++ b/run.c @@ -26,17 +26,19 @@ #include "perl.h" /* - * "Away now, Shadowfax! Run, greatheart, run as you have never run before! - * Now we are come to the lands where you were foaled, and every stone you - * know. Run now! Hope is in speed!" --Gandalf + * 'Away now, Shadowfax! Run, greatheart, run as you have never run before! + * Now we are come to the lands where you were foaled, and every stone you + * know. Run now! Hope is in speed!' --Gandalf + * + * [p.600 of _The Lord of the Rings_, III/xi: "The Palantír"] */ int Perl_runops_standard(pTHX) { dVAR; - while ((PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX))) { - PERL_ASYNC_CHECK(); + register OP *op = PL_op; + while ((PL_op = op = CALL_FPTR(op->op_ppaddr)(aTHX))) { } TAINT_NOT;