From 035eec486e617046cffd65a0086db3fec4edb05f Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 27 Apr 2000 19:10:15 +0000 Subject: [PATCH] (read1): Don't treat period followed by certain characters as symbol start. --- src/lread.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lread.c b/src/lread.c index 3235be321d7..67f6c956fe1 100644 --- a/src/lread.c +++ b/src/lread.c @@ -2165,7 +2165,8 @@ read1 (readcharfun, pch, first_in_list) int next_char = READCHAR; UNREAD (next_char); - if (next_char <= 040) + if (next_char <= 040 + || index ("\"'`,(", next_char)) { *pch = c; return Qnil; -- 2.39.5