diff options
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/embedvar.h b/embedvar.h index fd198e0f98..6e1d615974 100644 --- a/embedvar.h +++ b/embedvar.h @@ -366,7 +366,7 @@ #define PL_runops (vTHX->Irunops) #define PL_savebegin (vTHX->Isavebegin) #define PL_sawampersand (vTHX->Isawampersand) -#define PL_sh_path (vTHX->Ish_path) +#define PL_sh_path_compat (vTHX->Ish_path_compat) #define PL_sig_pending (vTHX->Isig_pending) #define PL_sighandlerp (vTHX->Isighandlerp) #define PL_signals (vTHX->Isignals) @@ -658,7 +658,7 @@ #define PL_Irunops PL_runops #define PL_Isavebegin PL_savebegin #define PL_Isawampersand PL_sawampersand -#define PL_Ish_path PL_sh_path +#define PL_Ish_path_compat PL_sh_path_compat #define PL_Isig_pending PL_sig_pending #define PL_Isighandlerp PL_sighandlerp #define PL_Isignals PL_signals @@ -883,6 +883,7 @@ #define PL_ppid (PL_Vars.Gppid) #define PL_runops_dbg (PL_Vars.Grunops_dbg) #define PL_runops_std (PL_Vars.Grunops_std) +#define PL_sh_path (PL_Vars.Gsh_path) #define PL_sharehook (PL_Vars.Gsharehook) #define PL_thr_key (PL_Vars.Gthr_key) #define PL_threadhook (PL_Vars.Gthreadhook) @@ -903,6 +904,7 @@ #define PL_Gppid PL_ppid #define PL_Grunops_dbg PL_runops_dbg #define PL_Grunops_std PL_runops_std +#define PL_Gsh_path PL_sh_path #define PL_Gsharehook PL_sharehook #define PL_Gthr_key PL_thr_key #define PL_Gthreadhook PL_threadhook |