Change 16182 by jhi@alpha on 2002/04/26 11:53:58
Subject: Re: binary compatibility
From: Mark-Jason Dominus <[EMAIL PROTECTED]>
Date: Wed, 24 Apr 2002 17:35:07 -0400
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
.... //depot/perl/op.h#111 edit
Differences ...
==== //depot/perl/op.h#111 (text) ====
Index: perl/op.h
--- perl/op.h.~1~ Fri Apr 26 06:00:05 2002
+++ perl/op.h Fri Apr 26 06:00:05 2002
@@ -251,7 +251,7 @@
#else
REGEXP * op_pmregexp; /* compiled expression */
#endif
- U16 op_pmflags;
+ U32 op_pmflags;
U16 op_pmpermflags;
U8 op_pmdynflags;
#ifdef USE_ITHREADS
@@ -282,7 +282,7 @@
#define PMf_RETAINT 0x0001 /* taint $1 etc. if target tainted */
#define PMf_ONCE 0x0002 /* use pattern only once per reset */
-#define PMf_REVERSED 0x0004 /* Should be matched right->left */
+#define PMf_UNUSED 0x0004 /* free for use */
#define PMf_MAYBE_CONST 0x0008 /* replacement contains variables */
#define PMf_SKIPWHITE 0x0010 /* skip leading whitespace for split */
#define PMf_WHITE 0x0020 /* pattern is \s+ */
End of Patch.