[Issue 2783] Truncation of long string by std.stdio.write

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2783 Andrei Alexandrescu changed: What|Removed |Added Version|2.026 |D2 --

[Issue 2783] Truncation of long string by std.stdio.write

2009-04-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2783 --- Comment #1 from steve.te...@britseyeview.com 2009-04-02 05:03 --- Created an attachment (id=310) --> (http://d.puremagic.com/issues/attachment.cgi?id=310&action=view) The file used in my description of the issue --

[Issue 2783] Truncation of long string by std.stdio.write

2009-04-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2783 --- Comment #2 from ma...@pochta.ru 2009-04-02 07:40 --- format.d 1623: short precision = short.max - 1; 2010: auto s = obj[0 .. f.precision < $ ? f.precision : $]; 2016: w.write(s); try std.stdio.write("%s",s2); --

[Issue 2783] Truncation of long string by std.stdio.write

2009-04-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2783 --- Comment #3 from and...@metalanguage.com 2009-04-02 08:23 --- I've fixed the problem, will be part of the next release. Andrei --

[Issue 2783] Truncation of long string by std.stdio.write

2009-10-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2783 Andrei Alexandrescu changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Issue 2783] Truncation of long string by std.stdio.write

2010-09-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2783 Andrei Alexandrescu changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|