On 25.09.2013 08:07, H.Merijn Brand wrote: > On Tue, 24 Sep 2013 21:02:45 +0200, Lukas Mai <plokinom@gmail.com> > wrote: > >> >> Yes, please! You can easily get the old behavior of glob "foo bar" with >> glob("foo"), glob("bar"). > > No, please not. That would break > > foreach my $filename (<a b c d* ef* >) { > > which would extend to quite a long and ugly line when you have to > rewrite those to globs where parens are required. for my $filename (map glob, qw<a b c d* ef*>) { -- Lukas Mai <plokinom@gmail.com>Thread Previous | Thread Next