http://qs321.pair.com?node_id=590876


in reply to Re^2: Sorting result of function call
in thread Sorting result of function call

Yes, I'd expect "sort subname" to mean "sort the empty list with the comparison func subname" - because "sort bareword LIST" means sort the (possibly empty) list with bareword as a comparison func.

And I'd expect "sort subname()" to mean "invoke subname to get a list, to sort with the default comparator" - because I interpret "subname()" to always mean "invoke subname".

So I'd expect your first two examples to have different behaviour (but not the behaviour we get).

But I'm not sure my expectations are in line with "documented reality", so I'm loath to say there definitely is a bug.

I'm hoping to learn something in this thread :-)