summaryrefslogtreecommitdiff
path: root/liblali.c
diff options
context:
space:
mode:
Diffstat (limited to 'liblali.c')
-rw-r--r--liblali.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/liblali.c b/liblali.c
index d49e0f2..a73b004 100644
--- a/liblali.c
+++ b/liblali.c
@@ -647,7 +647,7 @@ Object *readExpr(Stream *stream, GC_PARAM) {
return NULL;
else if (ch == '\'')
return readUnary(stream, "quote", GC_ROOTS);
- else if (ch == '\\')
+ else if (ch == '/' && !isspace(streamPeek(stream)))
return readUnary(stream, "say", GC_ROOTS);
else if (ch == '"')
return readString(stream, GC_ROOTS);