I know there are some Elips gurus around here.
I’m confused by the following behaviour, could anybody explain to me what’s happening:
(setq test 'test) test (eq test 'test) t (setq test2 '(alist . 'test)) (alist quote test) (cdr test2) 'test (eq (cdr test2) 'test) nil^ WTF? How come this last result is not t?
I experience the same behaviour regardless of the equality operator used (eq or equal)