diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 3 |
1 files changed, 2 insertions, 1 deletions
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) | |||
| 2165 | int next_char = READCHAR; | 2165 | int next_char = READCHAR; |
| 2166 | UNREAD (next_char); | 2166 | UNREAD (next_char); |
| 2167 | 2167 | ||
| 2168 | if (next_char <= 040) | 2168 | if (next_char <= 040 |
| 2169 | || index ("\"'`,(", next_char)) | ||
| 2169 | { | 2170 | { |
| 2170 | *pch = c; | 2171 | *pch = c; |
| 2171 | return Qnil; | 2172 | return Qnil; |