Quick question for Tcl folks. Currently, store_lex is *always* an aliasing operation. That is, after
store_lex 'a', $P0
the old PMC that used to be accessible by
$P1 = find_lex 'a'
is now gone (unless you kept a reference somewhere else).
(To modify an existing lexical, the sequence is
$P1 = find_lex 'a'
followed by some mutating operation on $P1.)
Is this a problem for Tcl implementation? If so, how?
--
Chip Salzenberg <[EMAIL PROTECTED]>
