summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-01-07 01:45:19 -0800
committerKaz Kylheku <kaz@kylheku.com>2018-01-07 01:45:19 -0800
commit3cdac5ead76c16bbf68be92a086c0b9ab72ad3b9 (patch)
tree998d1812151d449e486d4f4ce51033286e55e5f0 /eval.c
parent639986fea1d7ba47a872b35be684892e4fcbd908 (diff)
downloadtxr-3cdac5ead76c16bbf68be92a086c0b9ab72ad3b9.tar.gz
txr-3cdac5ead76c16bbf68be92a086c0b9ab72ad3b9.tar.bz2
txr-3cdac5ead76c16bbf68be92a086c0b9ab72ad3b9.zip
term: move near site of use.
* eval.c (term): Function here from lib.c, and changed to static. It is used only by iapply. * lib.c (term): Function moved to eval.c. * lib.h (term): Declaration removed.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index d82f2141..0a3ba209 100644
--- a/eval.c
+++ b/eval.c
@@ -1138,6 +1138,13 @@ static val applyv(val fun, struct args *args)
return apply_intrinsic(fun, args_get_list(args));
}
+static loc term(loc head)
+{
+ while (consp(deref(head)))
+ head = cdr_l(deref(head));
+ return head;
+}
+
static val iapply(val fun, struct args *args)
{
cnum index = 0;