Fixed: forgot to escape the n
This commit is contained in:
parent
1e8eb63f34
commit
e721b64045
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue