This commit is contained in:
Hackerpilot 2015-03-17 10:35:06 -07:00
parent 1bfaa7ad7a
commit 51b991f50f
2 changed files with 21 additions and 1 deletions

15
build.bat Normal file
View File

@ -0,0 +1,15 @@
@echo off
setlocal enabledelayedexpansion
set DFLAGS=-g
set CORE=
set STD=
set STDD=
for %%x in (src\*.d) do set CORE=!CORE! %%x
for %%x in (libdparse\src\std\*.d) do set STD=!STD! %%x
for %%x in (libdparse\src\std\d\*.d) do set STDD=!STDD! %%x
@echo on
dmd %CORE% %STD% %STDD% %DFLAGS% -ofbin\dfmt.exe

View File

@ -1235,7 +1235,12 @@ private:
}
else
{
output.put(current.text);
// You know what's awesome? Windows can't handle its own line
// endings correctly.
version(Windows)
output.put(current.text.replace("\r", ""));
else
output.put(current.text);
currentLineLength += current.text.length;
}
index++;