Hi

about $*
when i use it with $+ i don't have the expected result

Code:
alias t {
  tokenize 32 1 2 3 4 5 6
  echo -a - $* $+(test,$*)
}

return

- 1 test`~$*
- 2 test`~$*
- 3 test`~$*
- 4 test`~$*
- 5 test`~$*
- 6 test`~$*

normally it is supposed to return

- 1 test1
- 2 test2
- 3 test3
- 4 test4
- 5 test5
- 6 test6

can you fix this problem plz

and more

Code:
alias x {
  tokenize 32 1 2 3 4 5 6
  echo -a - $* $+(test,$*) $*
  echo -a blabla
  echo -a $*
  echo -a bloblo
}


return

- 1 test`~$* 1
- 2 test`~$* 2
- 3 test`~$* 3
- 4 test`~$* 4
- 5 test`~$* 5
- 6 test`~$* 6
blabla
bloblo

the second $* doesnt work anymore!! smirk