Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Possibly unexpected difference between builtin and reserved typeset



% foo=bar \typeset foo; echo . $foo .
foo=bar
. .
% foo=bar typeset foo; echo . $foo .
foo=bar
. bar .

Out of the ones I tried in $reswords, typeset and friends seem to be
the only ones that aren't a syntax error after parameter assignments,
so I guess that might be why the code doesn't handle it?

-- 
Mikael Magnusson



Messages sorted by: Reverse Date, Date, Thread, Author