Oops, my circular ref code is/was screwy...

>     --$DEPTH 
>         and $SEEN{$_} = ref($rval)
>         or  $SEEN = (); 

should be 

>     --$DEPTH 
>         and $SEEN{$_} = $rval
>         or  $SEEN = (); 

Reply via email to