diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-24 18:35:18 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-24 18:35:18 +0000 |
commit | 513629ba5d0f3f020f7bd86ec9c6cee5df562933 (patch) | |
tree | 0efb4dbcba8b9cff1c1d98d815a7a2d92acb3b50 /pp_ctl.c | |
parent | 2a3ff820301890f99ad3953e98c0fe48f57bcba9 (diff) | |
download | perl-513629ba5d0f3f020f7bd86ec9c6cee5df562933.tar.gz |
The #10771 didn't take?
p4raw-id: //depot/perl@10902
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -87,6 +87,34 @@ PP(pp_regcomp) STRLEN len; MAGIC *mg = Null(MAGIC*); +Change 10771 by jhi@alpha on 2001/06/21 12:10:29 + + Subject: [PATCH] Make /o work under i?threads + From: Richard Soderberg <rs@crystalflame.net> + Date: Thu, 21 Jun 2001 05:21:43 -0700 (PDT) + Message-ID: <Pine.LNX.4.21.0106210518210.2479-100000@oregonnet.com> + +Affected files ... + + ... //depot/perl/pp_ctl.c#267 edit + +Differences ... + + ==== //depot/perl/pp_ctl.c#267 (text) ==== +Index: perl/pp_ctl.c +--- perl/pp_ctl.c.~1~ Sun Jun 24 22:31:38 2001 ++++ perl/pp_ctl.c Sun Jun 24 22:31:38 2001 +@@ -88,6 +88,13 @@ + MAGIC *mg = Null(MAGIC*); + + tmpstr = POPs; + + /* prevent recompiling under /o and ithreads. */ +#if defined(USE_ITHREADS) || defined(USE_THREADS) + if (pm->op_pmflags & PMf_KEEP && PM_GETRE(pm)) + RETURN; +#endif + tmpstr = POPs; if (SvROK(tmpstr)) { SV *sv = SvRV(tmpstr); |