From: Andreas Schwab Date: Wed, 9 Mar 2016 18:40:00 +0000 (+0100) Subject: Properly handle lambda as read function (bug 22961) X-Git-Tag: emacs-25.0.93~113 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=711ca36;p=emacs.git Properly handle lambda as read function (bug 22961) * src/lread.c (readchar): Be more strict about checking for string in cons for read_vector. (unreadchar): Likewise. --- diff --git a/src/lread.c b/src/lread.c index 25e3ff01d47..828c76ce49d 100644 --- a/src/lread.c +++ b/src/lread.c @@ -264,7 +264,7 @@ readchar (Lisp_Object readcharfun, bool *multibyte) return c; } - if (CONSP (readcharfun)) + if (CONSP (readcharfun) && STRINGP (XCAR (readcharfun))) { /* This is the case that read_vector is reading from a unibyte string that contains a byte sequence previously skipped @@ -406,7 +406,7 @@ unreadchar (Lisp_Object readcharfun, int c) read_from_string_index_byte = string_char_to_byte (readcharfun, read_from_string_index); } - else if (CONSP (readcharfun)) + else if (CONSP (readcharfun) && STRINGP (XCAR (readcharfun))) { unread_char = c; }