Get rid of 2.2 "poor mans universal newlines" now that the real thing
authorJack Jansen <jack.jansen@cwi.nl>
Fri, 13 Dec 2002 13:57:35 +0000 (13:57 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Fri, 13 Dec 2002 13:57:35 +0000 (13:57 +0000)
is implemented.

Mac/Python/macmain.c

index 1af38eb3e10cad36da80535f06968c87a20ef8b2..d3ce701daa181d1013d51901ce3aa00719b71496 100644 (file)
@@ -635,22 +635,3 @@ PyMac_GetDelayConsoleFlag(void)
        return (int)PyMac_options.delayconsole;
 }
 
-#ifndef WITHOUT_UNIX_NEWLINES
-/*
-** Experimental feature (for 2.2a2): optionally allow unix newlines
-** as well as Mac newlines on input. We replace a lowlevel
-** MSL routine to accomplish this.
-*/
-void
-__convert_to_newlines(unsigned char * buf, size_t * n_ptr)
-{
-       unsigned char *p;
-       size_t n = *n_ptr;
-       
-       for(p=buf; n > 0; p++, n--)
-               if ( *p == '\r' ) *p = '\n';
-               else if ( *p == '\n' && !PyMac_options.unixnewlines )
-                       *p = '\r';
-}
-#endif /* WITHOUT_UNIX_NEWLINES */
-