diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1998-06-08 18:16:56 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-10 07:21:21 +0000 |
commit | e2d46a1de163ba101bb4392a8fa6d97ca3c9a323 (patch) | |
tree | 9dc1bbb410301b64987309b0fbfdd19c0687fc62 /embedvar.h | |
parent | 49136ef87c7a099210ef3e193f1a24f3def277ff (diff) | |
download | perl-e2d46a1de163ba101bb4392a8fa6d97ca3c9a323.tar.gz |
Applied patch, followed by tweaks to *.sym and `perl embed.pl`
Message-Id: <199806090216.WAA02041@monk.mps.ohio-state.edu>
Subject: [PATCH 5.004_66] Resend of RE cache patch (modified)
p4raw-id: //depot/perl@1105
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embedvar.h b/embedvar.h index 918d330a23..036da41701 100644 --- a/embedvar.h +++ b/embedvar.h @@ -220,7 +220,6 @@ #define sortcop (curinterp->Isortcop) #define sortcxix (curinterp->Isortcxix) #define sortstash (curinterp->Isortstash) -#define specialsv_list (curinterp->Ispecialsv_list) #define splitstr (curinterp->Isplitstr) #define statcache (curinterp->Istatcache) #define statgv (curinterp->Istatgv) @@ -384,7 +383,6 @@ #define Isortcop sortcop #define Isortcxix sortcxix #define Isortstash sortstash -#define Ispecialsv_list specialsv_list #define Isplitstr splitstr #define Istatcache statcache #define Istatgv statgv @@ -610,7 +608,6 @@ #define sortcop Perl_sortcop #define sortcxix Perl_sortcxix #define sortstash Perl_sortstash -#define specialsv_list Perl_specialsv_list #define splitstr Perl_splitstr #define statcache Perl_statcache #define statgv Perl_statgv @@ -855,6 +852,7 @@ #define scrgv (Perl_Vars.Gscrgv) #define sh_path (Perl_Vars.Gsh_path) #define sighandlerp (Perl_Vars.Gsighandlerp) +#define specialsv_list (Perl_Vars.Gspecialsv_list) #define sub_generation (Perl_Vars.Gsub_generation) #define subline (Perl_Vars.Gsubline) #define subname (Perl_Vars.Gsubname) @@ -974,6 +972,7 @@ #define Gscrgv scrgv #define Gsh_path sh_path #define Gsighandlerp sighandlerp +#define Gspecialsv_list specialsv_list #define Gsub_generation sub_generation #define Gsubline subline #define Gsubname subname @@ -1093,6 +1092,7 @@ #define scrgv Perl_scrgv #define sh_path Perl_sh_path #define sighandlerp Perl_sighandlerp +#define specialsv_list Perl_specialsv_list #define sub_generation Perl_sub_generation #define subline Perl_subline #define subname Perl_subname |