oliver Posted May 10, 2013 Posted May 10, 2013 error: EOF after quote on input heres my pc specs: OS: win 7 cad: autocad 2002 Quote
welldriller Posted May 10, 2013 Posted May 10, 2013 Re: Error:EOF after quote on input Because READ respects certain characters reserved for lisp evaluations. A quote "'" is read as the function QUOTE: (read "a") returns the symbol A, but (read "'a") returns (QUOTE A) It's the same thing that makes READ capable of returning lisp expressions, as in (read "(cons 2 4)") where the left parenthesis signals a lisp expression. Whenever READ bumps into a reserved character it expects an expression to follow. You'll have to check the returned character before using READ. don't know if this will help or not - found it on another forum and thought i would pass it on Quote
oliver Posted May 11, 2013 Author Posted May 11, 2013 i can't spicified which part of the lisp is error here's the pic Quote
MSasu Posted May 11, 2013 Posted May 11, 2013 (edited) Taking into account what Welldriller posted, you may want to search into your code for line(s) of code containing the string below and post it/them here for someone to have a look at: (read PS. Please make sure that Match Case option is uncheked. Edited May 11, 2013 by MSasu addition on Match Case option Quote
Lee Mac Posted May 11, 2013 Posted May 11, 2013 As indicated by welldriller's post, the following will cause the error: _$ (read "'") ; error: EOF after quote on input Since there are no expressions following the quote symbol. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.