diff options
author | Tony Cook <tony@develop-help.com> | 2020-10-15 11:46:15 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2020-12-01 15:29:33 +1100 |
commit | 203831af1a745c76df85e12f4a1cf47e5bddf3ff (patch) | |
tree | a97f55d9762d862c95b6e66cffa13e3d5b4e1516 /mg.c | |
parent | 17ab6b6399dbe07e478478e9eba9aeb345eab2ed (diff) | |
download | perl-203831af1a745c76df85e12f4a1cf47e5bddf3ff.tar.gz |
remove ${^WIN32_SLOPPY_STAT}
The new implementation, like the UCRT implementation, always
opens the specified file.
Diffstat (limited to 'mg.c')
-rw-r--r-- | mg.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -1128,11 +1128,6 @@ Perl_magic_get(pTHX_ SV *sv, MAGIC *mg) *PL_compiling.cop_warnings); } } -#ifdef WIN32 - else if (strEQ(remaining, "IN32_SLOPPY_STAT")) { - sv_setiv(sv, w32_sloppystat); - } -#endif break; case '+': if (PL_curpm && (rx = PM_GETRE(PL_curpm))) { @@ -3044,11 +3039,6 @@ Perl_magic_set(pTHX_ SV *sv, MAGIC *mg) } } } -#ifdef WIN32 - else if (strEQ(mg->mg_ptr+1, "IN32_SLOPPY_STAT")) { - w32_sloppystat = SvTRUE(sv); - } -#endif break; case '.': if (PL_localizing) { |