|
From: | Noam Postavsky |
Subject: | Re: macro defining function and byte compiler |
Date: | Sat, 4 May 2019 22:03:06 -0400 |
On Sat, 4 May 2019 at 21:12, akrl <akrl@sdf.org> wrote: > (defmacro xxx () > `(progn > (defun ,(make-symbol "yyy") ()) You probably want intern instead of make-symbol: make-symbol creates a new symbol which is distinct from other symbols named "yyy".
[Prev in Thread] | Current Thread | [Next in Thread] |