all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Why does evaluating a piece of Elisp code seemingly not expand a macro?
@ 2016-01-15 10:08 Marcin Borkowski
  2016-01-15 10:57 ` Oleh Krehel
  2016-01-15 21:10 ` Samuel W. Flint
  0 siblings, 2 replies; 9+ messages in thread
From: Marcin Borkowski @ 2016-01-15 10:08 UTC (permalink / raw)
  To: Org-Mode mailing list

This piece of code:


#+BEGIN_SRC elisp :results value verbatim :exports both
  (defmacro forty-two ()
    (* 6 7))

  (defun print-answer ()
    (message "The answer is %s." (forty-two)))

  (symbol-function 'print-answer)
#+END_SRC


yields this:


#+RESULTS:
: (lambda nil (message "The answer is %s." (forty-two)))


and not that:


: (lambda nil (message "The answer is %s." 42))


Why?

-- 
Marcin Borkowski
http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
Faculty of Mathematics and Computer Science
Adam Mickiewicz University

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

end of thread, other threads:[~2016-01-18 20:19 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-15 10:08 Why does evaluating a piece of Elisp code seemingly not expand a macro? Marcin Borkowski
2016-01-15 10:57 ` Oleh Krehel
2016-01-17 22:56   ` Marcin Borkowski
2016-01-18 13:54     ` Stefan Monnier
2016-01-18 20:03       ` Marcin Borkowski
2016-01-18 20:19         ` Stefan Monnier
2016-01-15 21:10 ` Samuel W. Flint
2016-01-15 22:06   ` Nick Dokos
2016-01-15 22:24   ` Marcin Borkowski

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.