diff options
| author | Daniel Cerqueira <dan.git@lispclub.com> | 2026-08-25 16:30:00 +0100 |
|---|---|---|
| committer | Daniel Cerqueira <dan.git@lispclub.com> | 2026-08-25 16:56:19 +0100 |
| commit | 805caa0211e590d333e05b3e79b8fec2a1c0980e (patch) | |
| tree | 306fd029d589b9c8ceccd402c011df347e46f173 /liblali.c | |
| parent | 13ab08b19d3e76f75d4cd10dd321acb75b5f147c (diff) | |
change 'say' shortcut from \ to /
Diffstat (limited to 'liblali.c')
| -rw-r--r-- | liblali.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
