diff options
author | Andy Lester <andy@petdance.com> | 2005-06-01 19:02:38 -0500 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-06-02 07:39:30 +0000 |
commit | a0288114f9bfa2566e353eba77114ea63b616631 (patch) | |
tree | 8c86c7a2a168301943e790fcdd612b20d47ea300 /perly.c | |
parent | 1936d2a74fbc35dd0d6862386c9988d92bb8e6e0 (diff) | |
download | perl-a0288114f9bfa2566e353eba77114ea63b616631.tar.gz |
Quotes fixed, see also perl #36079
Message-ID: <20050602050238.GA4001@petdance.com>
p4raw-id: //depot/perl@24666
Diffstat (limited to 'perly.c')
-rw-r--r-- | perly.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -263,8 +263,8 @@ Perl_yyparse (pTHX) int yytoken = 0; /* two stacks and their tools: - `yyss': related to states, - `yyvs': related to semantic values, + yyss: related to states, + yyvs: related to semantic values, Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ @@ -482,7 +482,7 @@ Perl_yyparse (pTHX) yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: - `$$ = $1'. + "$$ = $1". Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison @@ -514,7 +514,7 @@ Perl_yyparse (pTHX) *++yynsp = (const char *)(yytname [yyr1[yyn]]); #endif - /* Now `shift' the result of the reduction. Determine what state + /* Now shift the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ |