summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--read.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/read.c b/read.c
index 26dcfd5..11f523c 100644
--- a/read.c
+++ b/read.c
@@ -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);