summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>2000-11-25 20:01:28 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>2000-11-25 20:01:28 +0000
commita77df51f3c9319336e0ec43ad003b02a0111d2af (patch)
treef7d8de224e939bd63ba58d3f7aa5d8ff0cb2c41b /pp_sys.c
parentf5b9d040829bb5deb93173e35ee6c82ce0a01c37 (diff)
downloadperl-a77df51f3c9319336e0ec43ad003b02a0111d2af.tar.gz
All tests pass on Win32/gcc/USE_PERLIO.
- when crlf layer is pushed make unix-level binary. - remove :crlf injection in pp_backtick in pp_sys.c - (Change dependacy of extension .dll's to perldll.def rather than perl.exe) p4raw-id: //depot/perlio@7857
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 88ce86c1c0..7e5abbdd4d 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -301,9 +301,6 @@ PP(pp_backtick)
if (PL_curcop->cop_io) {
type = SvPV_nolen(PL_curcop->cop_io);
}
- else if (O_BINARY != O_TEXT) {
- type = ":crlf";
- }
if (type && *type)
PerlIO_apply_layers(aTHX_ fp,mode,type);