[Issue 9776] Make raw write mode the default

2017-09-05 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 --- Comment #14 from anonymous4 --- Not documented that std.file doesn't use C stdio and is not compatible with it (and not intended) and no remark to not mix it with stdio as was suggested here. --

[Issue 9776] Make raw write mode the default

2017-09-05 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 --- Comment #13 from Vladimir Panteleev --- (In reply to anonymous4 from comment #12) > Not documented though. How so? The documentation for stdioOpenmode says "range or string represting the open mode (with the

[Issue 9776] Make raw write mode the default

2017-09-05 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 anonymous4 changed: What|Removed |Added CC||bearophile_h...@eml.cc

[Issue 9776] Make raw write mode the default

2017-09-05 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 --- Comment #12 from anonymous4 --- (In reply to Vladimir Panteleev from comment #8) > Whether you agree or disagree, everything here works "as designed" Not documented though. --

[Issue 9776] Make raw write mode the default

2017-07-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 --- Comment #10 from Nick Sabalausky --- As already said before, windows notepad is the *only program that doesn't handle it (which makes it very *unlike* '/' if indeed "many programs" fail to deal with properly - which

[Issue 9776] Make raw write mode the default

2017-07-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 Walter Bright changed: What|Removed |Added CC|

[Issue 9776] Make raw write mode the default

2017-07-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 Vladimir Panteleev changed: What|Removed |Added Status|REOPENED

[Issue 9776] Make raw write mode the default

2015-06-16 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 Nick Sabalausky cbkbbej...@mailinator.com changed: What|Removed |Added Status|RESOLVED|REOPENED

[Issue 9776] Make raw write mode the default

2015-06-16 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 Nick Sabalausky cbkbbej...@mailinator.com changed: What|Removed |Added Resolution|WONTFIX |FIXED --- Comment

[Issue 9776] Make raw write mode the default

2015-06-16 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 --- Comment #7 from Vladimir Panteleev thecybersha...@gmail.com --- I'm telling you, this is not going to be fixed without introducing a new API. Edit-warring the status is not going to help. --

[Issue 9776] Make raw write mode the default

2015-06-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 --- Comment #3 from Nick Sabalausky cbkbbej...@mailinator.com --- Another way of putting it. Do this on a Windows machine: --- type test.d import std.file, std.stdio; void main() { auto str = cast(string)

[Issue 9776] Make raw write mode the default

2015-06-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 --- Comment #5 from Vladimir Panteleev thecybersha...@gmail.com --- (In reply to Vladimir Panteleev from comment #4) Wrong, the Windows console still treats \n as line feed without carriage return. I just tested and it seems I misremembered, sorry.

[Issue 9776] Make raw write mode the default

2015-06-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 Vladimir Panteleev thecybersha...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 9776] Make raw write mode the default

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9776 Andrei Alexandrescu and...@erdani.com changed: What|Removed |Added Version|unspecified |D2 --

[Issue 9776] Make raw write mode the default

2013-09-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9776 --- Comment #2 from Andrej Mitrovic andrej.mitrov...@gmail.com 2013-09-21 11:20:33 PDT --- Simple test-case from Issue 11087: - import std.file; import std.stdio; void main() { std.file.write(test1.txt, a\nb); auto file2 =

[Issue 9776] Make raw write mode the default

2013-09-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9776 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added CC|