alain.coch...@unistra.fr writes: > ... > (setq org-agenda-files '"/tmp/bug-agenda.org") ; <- bad syntax! > ... > NB: there is no message caused by "-debug-init" related to the bad > syntax in the setq instruction. >
That's because it's legal: it's not bad syntax: '"foo" is equivalent to (quote "foo"). Now `quote' inhibits evaluation but since strings evaluate to themselves, it does not matter whether you evaluate or not. -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler