commit | 78a7c99f7fd2f6e9ed7b386e28b88319dad157de | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Tue May 15 16:30:25 2001 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Tue May 15 16:30:25 2001 +0000 |
tree | 0976bdb774d95a758d27dbeab282c979ba3cee4c | |
parent | be9f44a7dfb225f03b68ad9c94539528458c84ff [diff] |
This patch covers one big part of variable handling. $ a=b foo should be handled correctly. $ a=b is parsed OK, but the actual variable setting is not yet written. Except for some weird exceptions related to quoting rules, this code passes (matches ash behavior) all the tests I threw at it. If someone now writes set_local_var(), and updates lookup_param() to match, we can claim success! - Larry