cc: piochjennifer at googlemail.com Subject: Re: [ksh93-integration-discuss] Name reference in tree not working? --------
> I want to use a named reference in a tree variable but can't get it working. > > For instance > > float v=1 > typeset x=( typeset -n v_ref=v ) > pjtmp1.ksh93: typeset: x.v_ref: is not an identifier > > Presumably this should work, but I can't get the syntax right > > Jenny > -- > Jennifer Pioch, Uni Frankfurt name references can only be identifiers. The can not be a sub-variable of a compound variable. David Korn dgk at research.att.com
