It should be enough to use \x instead of \u for \u0085

This commit is contained in:
Ferdinand Majerech 2014-07-28 23:19:59 +02:00
parent 645b191948
commit 45b15890ca

View file

@ -45,7 +45,7 @@ dchar fromEscape(dchar escape) @safe pure nothrow @nogc
case ' ': return '\x20';
case '\"': return '\"';
case '\\': return '\\';
case 'N': return '\u0085';
case 'N': return '\x85'; //'\u0085';
case '_': return '\xA0';
case 'L': return '\u2028';
case 'P': return '\u2029';