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

is this a problem?



Hi,

Looks like a problem:

	% zsh -f
	localhost% array=(two three)
	localhost% setopt rcexpandparam
	localhost% print -l ${:-one $array}
	one two
	one three
	localhost% print -l ${=:-one $array}
	one
	two
	three
	localhost%

I think the last command should have printed
	
	one
	two
	one
	three

but it isn't.

Thanks in advance.



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