diff options
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -106,6 +106,7 @@ static Val string(Reader *R) { case '\\': append('\\'); break; case 't': append('\t'); break; case 'n': append('\n'); break; + case 'e': append('\x1b'); break; case '"': append('"'); break; } next(R); |