This is in Stash.xs in 2.05b:

    /* ignore _private or .private members */
    if (!root || *item == '_' || *item == '.') {
        return &PL_sv_undef;
     }


    /* ignore _private or .private members */
    if (!root || !item_len || *item == '_' || *item == '.') {
        return &PL_sv_undef;
    }

That is, the !item_len part was removed, but then the whole thing was just
pasted over the existing block, instead of replacing it.  :-)

-- 
Chris Nandor                      [EMAIL PROTECTED]    http://pudge.net/
Open Source Development Network    [EMAIL PROTECTED]     http://osdn.com/


Reply via email to