1 Aug 2004 02:19
Re: comments at the top of each .c file
Rick Delaney <rick <at> bort.ca>
2004-08-01 00:19:40 GMT
2004-08-01 00:19:40 GMT
On Sat, Jul 31, 2004 at 05:45:48PM +0100, Dave Mitchell wrote:
> ==== //depot/perl/perly.y#56 (text) ====
>
> <at> <at> -12,6 +12,15 <at> <at>
> * All that is gold does not glitter, not all those who wander are lost.'
> */
>
> +/* This file holds the grammar for the Perl language. If edited, you need
> + * to run regen_perly.pl, which re-creates the files perly.h, perly.tab
> + * and perly.act which are derived from this.
> + *
> + * The main job of of this grammar is to call the various newFOO()
> + * functions in op.c to build a syntax tree of OP structs.
> + * It relies in the lexer in toke.c to do the tokenizing.
^^
on
> + */
> +
> /* Make the parser re-entrant. */
>
> %pure_parser
>
...
> ==== //depot/perl/utf8.c#207 (text) ====
>
> <at> <at> -29,6 +29,11 <at> <at>
> /*
> =head1 Unicode Support
>
> +This file contains various utility functions for manipulating UTF8-encoded
(Continue reading)
SvOK_off calls SvOOK_off, which is
#define SvOOK_off(sv) (SvOOK(sv) && sv_backoff(sv))
and sv_backoff() always returns 0.
SvO?OK_off are used 38 times in the core, and 37 times they're
Yes, I envision this as a constant-folding operation, similar
to empty-prototyped subroutines now.
RSS Feed