diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-06 03:26:54 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-06 03:26:54 +0000 |
commit | 0ff51efc278c0cef1dd1d7684f0ec623079d88c7 (patch) | |
tree | b045e5f18b46aab19953594badd17157ccf54ae6 /embedvar.h | |
parent | 78ca652eaf12f3ab6d7714883eec614d257f666a (diff) | |
download | perl-0ff51efc278c0cef1dd1d7684f0ec623079d88c7.tar.gz |
remove spurious unused conflicting globals (PL_yy{v,s}sp)
p4raw-id: //depot/perl@1924
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/embedvar.h b/embedvar.h index 45a1f8d3d5..10fcb352d6 100644 --- a/embedvar.h +++ b/embedvar.h @@ -772,9 +772,7 @@ #define PL_yyerrflag (PL_Vars.Gyyerrflag) #define PL_yylval (PL_Vars.Gyylval) #define PL_yynerrs (PL_Vars.Gyynerrs) -#define PL_yyssp (PL_Vars.Gyyssp) #define PL_yyval (PL_Vars.Gyyval) -#define PL_yyvsp (PL_Vars.Gyyvsp) #else /* !PERL_GLOBAL_STRUCT */ @@ -907,9 +905,7 @@ #define PL_Gyyerrflag PL_yyerrflag #define PL_Gyylval PL_yylval #define PL_Gyynerrs PL_yynerrs -#define PL_Gyyssp PL_yyssp #define PL_Gyyval PL_yyval -#define PL_Gyyvsp PL_yyvsp #ifdef EMBED |