[Issue 391] .sort and .reverse break utf8 encoding

2015-06-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=391

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|D1 & D2 |D2

--


[Issue 391] .sort and .reverse break utf8 encoding

2012-12-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=391


Walter Bright  changed:

   What|Removed |Added

  Component|DMD |druntime
 AssignedTo|bugzi...@digitalmars.com|nob...@puremagic.com


--- Comment #9 from Walter Bright  2012-12-27 
18:40:32 PST ---
This is also fixed in Phobos1.

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


[Issue 391] .sort and .reverse break utf8 encoding

2012-11-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=391


Walter Bright  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED


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


[Issue 391] .sort and .reverse break utf8 encoding

2012-11-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=391



--- Comment #8 from github-bugzi...@puremagic.com 2012-11-20 01:40:38 PST ---
Commit pushed to master at https://github.com/D-Programming-Language/druntime

https://github.com/D-Programming-Language/druntime/commit/b30134123b200f0daa616015ac8d6bdcfb350c50
fix Issue 391 - .sort and .reverse break utf8 encoding

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


[Issue 391] .sort and .reverse break utf8 encoding

2012-11-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=391



--- Comment #7 from github-bugzi...@puremagic.com 2012-11-20 01:36:18 PST ---
Commit pushed to phobos-1.x at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/8b4f262f9ed898a82e55e269ee68a865d97cc122
fix Issue 391 - .sort and .reverse break utf8 encoding

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


[Issue 391] .sort and .reverse break utf8 encoding

2010-11-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=391


Andrei Alexandrescu  changed:

   What|Removed |Added

 Status|REOPENED|ASSIGNED
 CC||and...@metalanguage.com
Version|1.00|D1 & D2


--- Comment #6 from Andrei Alexandrescu  2010-11-26 
11:30:22 PST ---
Don's latest fails both on 1.065 and 2.050. Marking as a D1 & D2 issue.

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


[Issue 391] .sort and .reverse break utf8 encoding

2009-04-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=391


clugd...@yahoo.com.au changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Comment #5 from clugd...@yahoo.com.au  2009-04-21 03:54 ---
This case (cut down from reverse_08_C) is still failing.

int main(){
   wchar[] a = "a\U0081b\U2000c\U0001";
   wchar[] b = a.dup;

   b.reverse; // OK
   b.reverse; // fails
   return 0;
}


--