> +++ perl-current/op.h Wed Jul 11 12:38:10 2001
> @@ -235,7 +235,11 @@
>      OP *        op_pmreplroot;
>      OP *        op_pmreplstart;
>      PMOP *      op_pmnext;              /* list of all scanpats */
> -    REGEXP *    op_pmregexp;            /* compiled expression */
> +#ifdef USE_ITHREADS
> +        I32             op_pmoffset;
> +#else
> +        REGEXP *        op_pmregexp;            /* compiled expression */
> +#endif

Not that it would necessarily matter much for compatibility much but I
would feel better if the I32 were IV, that way the struct has at least
a fighting chance of being the same alignment and size.

>      U16         op_pmflags;
>      U16         op_pmpermflags;
>      U8          op_pmdynflags;
> @@ -246,8 +250,13 @@
>  #endif
>  };

-- 
$jhi++; # http://www.iki.fi/jhi/
        # There is this special biologist word we use for 'stable'.
        # It is 'dead'. -- Jack Cohen

Reply via email to