Change 33270 by [EMAIL PROTECTED] on 2008/02/10 14:56:53
Two parameter names missing in embed.fnc
Affected files ...
... //depot/perl/embed.fnc#572 edit
... //depot/perl/proto.h#906 edit
Differences ...
==== //depot/perl/embed.fnc#572 (text) ====
Index: perl/embed.fnc
--- perl/embed.fnc#571~33249~ 2008-02-08 03:15:36.000000000 -0800
+++ perl/embed.fnc 2008-02-10 06:56:53.000000000 -0800
@@ -992,7 +992,7 @@
p |int |yyerror |NN const char *const s
EXp |int |yylex
p |int |yyparse
-p |void |parser_free |NN const yy_parser *
+p |void |parser_free |NN const yy_parser *parser
p |int |yywarn |NN const char *const s
#if defined(MYMALLOC)
Ap |void |dump_mstats |NN char* s
@@ -1386,7 +1386,7 @@
Es |regnode*|regbranch |NN struct RExC_state_t *state|NN I32
*flagp|I32 first|U32 depth
Es |STRLEN |reguni |NN const struct RExC_state_t *state|UV uv|NN
char *s
Es |regnode*|regclass |NN struct RExC_state_t *state|U32 depth
-ERsn |I32 |regcurly |NN const char *
+ERsn |I32 |regcurly |NN const char *s
Es |regnode*|reg_node |NN struct RExC_state_t *state|U8 op
Es |UV |reg_recode |const char value|NN SV **encp
Es |regnode*|regpiece |NN struct RExC_state_t *state|NN I32
*flagp|U32 depth
==== //depot/perl/proto.h#906 (text+w) ====
Index: perl/proto.h
--- perl/proto.h#905~33249~ 2008-02-08 03:15:36.000000000 -0800
+++ perl/proto.h 2008-02-10 06:56:53.000000000 -0800
@@ -2663,7 +2663,7 @@
PERL_CALLCONV int Perl_yylex(pTHX);
PERL_CALLCONV int Perl_yyparse(pTHX);
-PERL_CALLCONV void Perl_parser_free(pTHX_ const yy_parser *)
+PERL_CALLCONV void Perl_parser_free(pTHX_ const yy_parser *parser)
__attribute__nonnull__(pTHX_1);
PERL_CALLCONV int Perl_yywarn(pTHX_ const char *const s)
@@ -3689,7 +3689,7 @@
STATIC regnode* S_regclass(pTHX_ struct RExC_state_t *state, U32 depth)
__attribute__nonnull__(pTHX_1);
-STATIC I32 S_regcurly(const char *)
+STATIC I32 S_regcurly(const char *s)
__attribute__warn_unused_result__
__attribute__nonnull__(1);
End of Patch.