On Tue, Feb 5, 2019 at 4:23 PM L A Walsh wrote: > Yes...it worked for me up till the latest perl. I was surprised.
Which latest perl is that? The 5.26.3 version I cited is the latest version on cygwin, and it's working fine in all the simple tests I tried (I tried scalar & array contexts for both the chars & pixels functions). Do you have perl 5.28 installed? I see that Term/Size.pm has a "use vars" line in it: use vars qw(@EXPORT_OK @ISA $VERSION); ... and since "use vars" looks to have been removed in 5.28, you could rewrite that line as this: our (@EXPORT_OK, @ISA, $VERSION); ..wayne.. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple