Thread overview | ||||||
---|---|---|---|---|---|---|
|
May 20, 2013 [Issue 10125] New: readln!dchar misdecodes Unicode non-BMP | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=10125 Summary: readln!dchar misdecodes Unicode non-BMP Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Phobos AssignedTo: nobody@puremagic.com ReportedBy: fw..vdijk@gmail.com --- Comment #0 from fw..vdijk@gmail.com 2013-05-20 05:26:14 PDT --- readln!dchar decodes Unicode code point >U+FFFF to 2 surrogates instead of 1 dchar containing the code point. e.g. U+10001 becomes [0xd800,0xdc01] instead of [0x10001] -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
May 20, 2013 [Issue 10125] readln!dchar misdecodes Unicode non-BMP | ||||
---|---|---|---|---|
| ||||
Posted in reply to fw..vdijk@gmail.com | http://d.puremagic.com/issues/show_bug.cgi?id=10125 --- Comment #1 from fw..vdijk@gmail.com 2013-05-20 05:33:52 PDT --- queued pull request #1296 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
July 06, 2013 [Issue 10125] readln!dchar misdecodes Unicode non-BMP | ||||
---|---|---|---|---|
| ||||
Posted in reply to fw..vdijk@gmail.com | http://d.puremagic.com/issues/show_bug.cgi?id=10125 monarchdodra@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |monarchdodra@gmail.com --- Comment #2 from monarchdodra@gmail.com 2013-07-06 07:16:40 PDT --- Concurrently fixed in: https://github.com/D-Programming-Language/phobos/pull/1381 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 05, 2013 [Issue 10125] readln!dchar misdecodes Unicode non-BMP | ||||
---|---|---|---|---|
| ||||
Posted in reply to fw..vdijk@gmail.com | http://d.puremagic.com/issues/show_bug.cgi?id=10125 --- Comment #3 from github-bugzilla@puremagic.com 2013-08-04 23:59:44 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/8f401a9199b441f941717cda5ab551c4e1a86a40 fix Issue 10125 Unicode non-BMP decoding to dchar in stdio readln strings were first decoded to wchars, each wchar was then separately decoded to dchar, resulting in 2 dchars in the surrogate block instead of 1 correct dchar. added unit test to verify readln decoding of non-ASCII characters https://github.com/D-Programming-Language/phobos/commit/1086f2955418a4effd7e815d906460e1b137eb2d Merge pull request #1296 from M-frankied/readln-nonbmp fix Issue 10125 Unicode non-BMP decoding to dchar in stdio readln Merged. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation