> From: SMTP%"[EMAIL PROTECTED]" 16-FEB-2000 07:19:50.64
> To: PVHP
> CC:
> Subj: RE: does binmode() work properly on VMS?
>
> Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
> Precedence: bulk
> list-help: <mailto:[EMAIL PROTECTED]>
> list-unsubscribe: <mailto:[EMAIL PROTECTED]>
> list-post: <mailto:[EMAIL PROTECTED]>
> Delivered-To: mailing list [EMAIL PROTECTED]
> Message-ID: <[EMAIL PROTECTED]>
> From: Jordan Henderson <[EMAIL PROTECTED]>
> To: "'Dan Sugalski'" <[EMAIL PROTECTED]>,
> Jordan Henderson
> <[EMAIL PROTECTED]>,
> "'[EMAIL PROTECTED]'"
> <[EMAIL PROTECTED]>
> Cc: [EMAIL PROTECTED], [EMAIL PROTECTED]
> Subject: RE: does binmode() work properly on VMS?
> Date: Wed, 16 Feb 2000 10:16:47 -0500
> X-Mailer: Internet Mail Service (5.5.2650.21)
>
> Well then, I wonder what its doing in XML-Parser. I can't imagine some valid
> XML that would depend on reading CRLF literally, but then, I'm no expert.
> Perhaps it's possible to have quoted data in XML files that contains ^Z? If so,
> then maybe the correct change to XML-Parser would be:
>
> binmode(FILE) if ($^O eq 'Windows);
>
> (or whatever the ID is for Windows),
How about this?:
binmode(FILE) if ($^O eq 'dos' || $^O eq 'os2' ||
$^O eq 'MSWin32' || $^O eq ''cygwin'');
as near as I can tell the Mingw32 port (a flavor of GNU on NT) does not
do anything special with $^O though I could be wrong.
Peter Prymmer