eolian generator: no need to replace newlines on win32 (lexer can deal with it)

This commit is contained in:
Daniel Kolesa 2015-09-29 13:54:11 +01:00
parent b2e7eddc93
commit 97cb6c5ca9
1 changed files with 0 additions and 3 deletions

View 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;