changeset 28746:42f2ded9d9db

(read1): Don't treat period followed by certain characters as symbol start.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 27 Apr 2000 19:10:15 +0000
parents b04dc1778dee
children 6f90293e6ccb
files src/lread.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lread.c	Thu Apr 27 19:09:58 2000 +0000
+++ b/src/lread.c	Thu Apr 27 19:10:15 2000 +0000
@@ -2165,7 +2165,8 @@
 	int next_char = READCHAR;
 	UNREAD (next_char);
 
-	if (next_char <= 040)
+	if (next_char <= 040
+	    || index ("\"'`,(", next_char))
 	  {
 	    *pch = c;
 	    return Qnil;