[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 and...@erdani.com changed:

   What|Removed |Added

Version|2.026   |D2

--


[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 and...@metalanguage.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED


--- Comment #4 from Andrei Alexandrescu and...@metalanguage.com 2010-09-26 
14:25:37 PDT ---
Fixed a while ago.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[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 and...@metalanguage.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||and...@metalanguage.com
 AssignedTo|nob...@puremagic.com|and...@metalanguage.com


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[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


--