[Issue 9629] toUpperInPlace doesn't work properly with unicode characters

2013-09-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9629 monarchdo...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 9629] toUpperInPlace doesn't work properly with unicode characters

2013-05-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9629 monarchdo...@gmail.com changed: What|Removed |Added CC||monarchdo...@gmail.com

[Issue 9629] toUpperInPlace doesn't work properly with unicode characters

2013-03-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9629 Andrej Mitrovic changed: What|Removed |Added CC||k.hara...@gmail.com --- Comment #5 f

[Issue 9629] toUpperInPlace doesn't work properly with unicode characters

2013-03-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9629 --- Comment #4 from Andrej Mitrovic 2013-03-04 23:51:22 PST --- (In reply to comment #3) > At a glance, it looks to me like the problem is this line: > > s = s[0 .. i] ~ toAdd ~ s[j .. $]; > > See, it's not overwriting any memory, it's al

[Issue 9629] toUpperInPlace doesn't work properly with unicode characters

2013-03-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9629 --- Comment #3 from Manu 2013-03-04 23:26:13 PST --- At a glance, it looks to me like the problem is this line: s = s[0 .. i] ~ toAdd ~ s[j .. $]; See, it's not overwriting any memory, it's allocating and writing into new memory... that co

[Issue 9629] toUpperInPlace doesn't work properly with unicode characters

2013-03-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9629 --- Comment #2 from Andrej Mitrovic 2013-03-04 20:55:59 PST --- This seems like a codegen bug: import std.ascii; import std.conv; import std.stdio; import std.utf; void upper(C)(ref C[] s) { for (size_t i = 0; i < s.length; ) {

[Issue 9629] toUpperInPlace doesn't work properly with unicode characters

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