diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-12 00:37:20 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-12 00:37:20 +0000 |
commit | 35990314f73df48945aa05a488674262637a7abb (patch) | |
tree | c3ba2e78ca903597b8675349256ab7ab9c45d8c7 /perlio.c | |
parent | 30410c71a1b43e0c20155ea024aba695beef72dd (diff) | |
download | perl-35990314f73df48945aa05a488674262637a7abb.tar.gz |
Detypo and rename.
p4raw-id: //depot/perl@13637
Diffstat (limited to 'perlio.c')
-rw-r--r-- | perlio.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -859,7 +859,7 @@ void PerlIO_default_buffer(pTHX_ PerlIO_list_t *av) { PerlIO_funcs *tab = &PerlIO_perlio; -#ifdef PERLIO_CRLF +#ifdef PERLIO_USING_CRLF tab = &PerlIO_crlf; #else if (PerlIO_stdio.Set_ptrcnt) @@ -1076,7 +1076,7 @@ PerlIO_binmode(pTHX_ PerlIO *f, int iotype, int mode, const char *names) /* Can't flush if switching encodings. */ if (!(names && memEQ(names, ":encoding(", 10))) { PerlIO_flush(f); -#ifdef PERLIO_CRLF +#ifdef PERLIO_USING_CRLF if (!names && (mode & O_BINARY)) { PerlIO *top = f; while (*top) { @@ -1781,7 +1781,7 @@ PerlIO_modestr(PerlIO *f, char *buf) *s++ = '+'; } } -#ifdef PERLIO_CRLF +#ifdef PERLIO_USING_CRLF if (!(flags & PERLIO_F_CRLF)) *s++ = 'b'; #endif @@ -2367,7 +2367,7 @@ PerlIOStdio_mode(const char *mode, char *tmode) while (*mode) { *tmode++ = *mode++; } -#ifdef PERLIO_CRLF +#ifdef PERLIO_USING_CRLF *tmode++ = 'b'; #endif *tmode = '\0'; @@ -2906,7 +2906,7 @@ PerlIOBuf_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers, return NULL; } else { fd = PerlIO_fileno(f); -#ifdef PERLIO_CRLF +#ifdef PERLIO_USING_CRLF /* * do something about failing setmode()? --jhi */ |