summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-04-07 23:25:13 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-04-07 23:25:13 -0700
commit1cafc3e511b19f22ad6eb8c49c3f4cd7f87ece6a (patch)
tree662c337ba2bcfa647e95cb50f75623d5d2dea838 /eval.c
parent8fbc54a73f476c46b8d0d08c6cc700a7ca6a39c1 (diff)
downloadtxr-1cafc3e511b19f22ad6eb8c49c3f4cd7f87ece6a.tar.gz
txr-1cafc3e511b19f22ad6eb8c49c3f4cd7f87ece6a.tar.bz2
txr-1cafc3e511b19f22ad6eb8c49c3f4cd7f87ece6a.zip
Allow symbol macro in function call dot position.
* eval.c (expand_forms): If the forms list is an atom, then don't just return it. Try to expand it as a macro. If the macro produces a compound form, diagnose with an exception, otherwise return the expansion. * txr.1: Document the treatment of symbol macros in function call dot position.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 28a7a921..0133caea 100644
--- a/eval.c
+++ b/eval.c
@@ -2459,7 +2459,11 @@ static val me_quasilist(val form, val menv)
val expand_forms(val form, val menv)
{
if (atom(form)) {
- return form;
+ val ex_f = expand(form, menv);
+ if (consp(ex_f))
+ uw_throwf(error_s, lit("symbol macro ~s in dot position must produce "
+ "atom form, not compound"), form, nao);
+ return ex_f;
} else {
val f = car(form);
val r = cdr(form);