in reply to Re^2: peg - Perl _expression_ (GNU) grep script
in thread peg - Perl _expression_ (GNU) grep script

This module is needed on Win32 to color the output. It is required at line 500 (not sure how you missed it!).

Neither do I. I looked at it with the 'less' pager and used the search function of less to look for ANSI. I have no idea why I got no match - now I'm doing the same, I can clearly find it.

Failing that, add $ENV{PEG_NO_WIN32_CONSOLE_ANSI} = 1 to your peg_ini.pl file and this will stop you seeing the error message.

Wouldn't it make sense to eval {} the loading of the ANSI module and simply switch off colouring if the module is not available? You do it at one place, but not at the other (which makes me wonder why you require the module twice.

-- 
Ronald Fischer <ynnor@mm.st>

Replies are listed 'Best First'.
Re^4: peg - Perl _expression_ (GNU) grep script
by Clarendon4 (Acolyte) on Nov 19, 2008 at 15:29 UTC

    Wouldn't it make sense to eval {} the loading of the ANSI module and simply switch off colouring if the module is not available? You do it at one place, but not at the other (which makes me wonder why you require the module twice.

    ? Win32::Console::ANSI is only required once. The actual colouring interface used is provided by Term::ANSIColor.

    I think i may have misled you earlier... Win32::Console::ANSI _is_ needed for colouring, but it _also_ must be used to ensure the correct codepage is used on output (regardless of whether you want to colour the ouput). Consider this:

    c:\>perl -e "print '255 ', chr 255, qq(\n)" 255   c:\>perl -e "require Win32::console::ANSI; print '255 ', chr 255, qq(\ +n)" 255 ÿ

    The latter of these is the correct one for my console.

    You could argue that any script that does not require Win32::console::ANSI when printing to the console on Win32 is broken. I'd be interested to hear comments on this... especially if i'm wrong :-)

      ? Win32::Console::ANSI is only required once.

      Sorry, my mistake. I was just focusing on "ANSI" and mistook the require of require Term::ANSIColor. I should have read more carefully.

      You could argue that any script that does not require Win32::console::ANSI when printing to the console on Win32 is broken.

      If think this is an important point. If you are right, then I would consider it a severe mistake by ActiveState not having included it in their Perl distribution. I'm curious here about the comments of other Monks...

      -- 
      Ronald Fischer <ynnor@mm.st>