eolian generator: no need to replace newlines on win32 (lexer can deal with it)
authorDaniel Kolesa <d.kolesa@osg.samsung.com>
Tue, 29 Sep 2015 12:54:11 +0000 (13:54 +0100)
committerDaniel Kolesa <d.kolesa@osg.samsung.com>
Tue, 29 Sep 2015 12:54:30 +0000 (13:54 +0100)
src/bin/eolian/main.c

index 941053b..ebb845c 100644 (file)
@@ -84,9 +84,6 @@ _read_file(char *filename, Eina_Strbuf *buffer)
 
         eina_strbuf_append(buffer, content);
         free(content);
-#ifdef _WIN32
-        eina_strbuf_replace_all(buffer, "\r\n", "\n");
-#endif
      }
 
    ret = EINA_TRUE;