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

zsh3.0.0 bug: $=a split



why do these print out the same thing all of a sudden?

wrath% a="1 2 3"
wrath% i=$a
wrath% echo $i[2],$i[3]
 ,2
wrath% i=$=a
wrath% echo $i[2],$i[3]
 ,2
wrath% i=$==a
wrath% echo $i[2],$i[3]
 ,2

This is on HPUX9 and IRIX5.

    -Huy



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