Fixed: forgot to escape the n

This commit is contained in:
arookas 2016-01-25 23:59:46 -05:00
parent 1e8eb63f34
commit e721b64045

View file

@ -81,7 +81,7 @@ namespace arookas {
case 'a': sb.Append('\a'); break;
case 'b': sb.Append('\b'); break;
case 'f': sb.Append('\f'); break;
case 'n': sb.Append('n'); break;
case 'n': sb.Append('\n'); break;
case 't': sb.Append('\t'); break;
case 'v': sb.Append('\v'); break;
case 'x': sb.Append(UnescapeHex(value, j + 2, out i)); continue;