unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Weird error message "wrong-type-argument symbolp (quote foo)"
@ 2009-06-10 11:45 florian
  2009-06-10 12:12 ` Teemu Likonen
  0 siblings, 1 reply; 4+ messages in thread
From: florian @ 2009-06-10 11:45 UTC (permalink / raw)
  To: help-gnu-emacs

Dear wizards,

I would not have thought that such an error message was possible,
since (quote foo) should be the same as 'foo, hence, a symbol. I have
managed to produce it like this:

(let ((foo 1)
	(bar 2)
	(fubar 3))
    (dolist (var '('foo 'bar 'fubar))
      (message "%S's value is %d"
	       var (symbol-value var))))


The following form, which should produce the same error, however, does
not complain (just as I expected):

(let ((var (quote foo)))
  (symbol-value var))

As expected, it also makes no difference if I write it as

(let ((var 'foo))
  (symbol-value var))

Also, symbolp and symbol-value do not complain if they get sth like
"(quote foo)" as argument. Can anybody point me to what on earth is
going on in the first form? Thanks so much!

Florian


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-06-12 19:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-10 11:45 Weird error message "wrong-type-argument symbolp (quote foo)" florian
2009-06-10 12:12 ` Teemu Likonen
2009-06-10 12:18   ` Teemu Likonen
2009-06-12 19:46     ` florian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).