Tassilo Parseval <[EMAIL PROTECTED]> writes: >> >> We're not reading the same sources :) >> in bleadperl you have >> #define DEFSV GvSV(PL_defgv) >> #define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv)) >> in perl.h. (and references to 5005threads have been removed) > > >For instance. But pre-blead perls have no concept of lexically scoped $_ >so it would make no sense to look for one on the pad.
Not quiteb true. 5005 threads had lexical $_ (sort of) - which is what the 5005threads support was doing ... >So those macros >would therefore look different on older perls (they'd simply expand to >DEFSV). > >Tassilo