This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: perl -- classic?


On 2/4/2019 4:18 PM, Wayne Davison wrote:
> On Mon, Feb 4, 2019 at 2:33 PM L A Walsh wrote:
>   
>> Things like
>> Term::Size::chars no longer works as it says chars isn't exported.
>> but it is 'EXPORT_OK', and it used to work.
>>     
>
> Remember that EXPORT_OK means that you can ask for it to be exported,
> but it's not by default.  I just tried out CPAN 2.22 with perl 5.26.3
> and ran a CPAN "install Term::Size" and the result worked fine:
>
> perl -we 'use Term::Size "chars"; print join("\n",  chars), "\n";'
> perl -we 'use Term::Size; print join("\n",  Term::Size::chars), "\n";'
>
> I haven't seen any issues in the various CPAN modules that I added to my setup.
>   
---
    Yes...it worked for me up till the latest perl.  I was surprised.

The man page documents usage as:

       "Term::Size::chars" returns the size in units of characters, whereas
       "Term::Size::pixels" uses units of pixels.

       In a scalar context, both functions return the first element of the
       list, that is, the terminal width.

       The functions may be imported.

-----



--
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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]