Change 13863 by jhi@alpha on 2001/12/23 04:04:20
More logical test ordering.
Affected files ...
.... //depot/perl/perl.h#425 edit
Differences ...
==== //depot/perl/perl.h#425 (text) ====
Index: perl/perl.h
--- perl/perl.h.~1~ Sat Dec 22 21:15:05 2001
+++ perl/perl.h Sat Dec 22 21:15:05 2001
@@ -3943,12 +3943,13 @@
#if O_TEXT != O_BINARY
/* If you have different O_TEXT and O_BINARY and you are a CLRF shop,
* that is, you are somehow DOSish. */
-# if !defined(__BEOS__)
-# define PERLIO_USING_CRLF 1
-# else
+# if defined(__BEOS__)
/* If you have O_TEXT different from your O_BINARY but you still are
* not a CRLF shop. */
# undef PERLIO_USING_CRLF
+# else
+ /* If you really are DOSish. */
+# define PERLIO_USING_CRLF 1
# endif
#endif
End of Patch.