[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Lisp bug?



	There seems to be a problem in Lisp with EQ... I did the 
following:

(setq a (readline))<cr>		; Just hit cr
||
(eq '|| a)
NIL				; Huh?!
(setq b (implode nil))		; NIL was what a function to read
||				; text until you type a Ctrl-C
				; outputted if you just hit Ctrl-C
				; (It would output a list of the
				; ASCII values of the characters
				; typed.)
(eq b '||)
NIL				; *SIGH*
(eq a b)
NIL				; Lose!


What's going on?

			-Don