>
> On 03/05/2013 08:00 AM, John Goodyear wrote:
> >  > JCG: yylex returns 301: 'ýè'
>
> I am trying to learn more about this area of the code.  Where did you
> put your print statement that prints this?
>

I put in perly.c:

338  #ifdef PERL_IN_MADLY_C
339      parser->yychar = PL_madskills ? madlex() : yylex();
340  #else
341      parser->yychar = yylex();
342      PerlIO_printf(PerlIO_stdout(),"JCG: yylex returns %d: '%c'\n",
(int) parser->yychar, parser->yychar);
343  #endif

Reply via email to