summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 482a26bb..41b33865 100644
--- a/eval.c
+++ b/eval.c
@@ -2855,6 +2855,11 @@ static val me_load(val form, val menv)
return list(sys_load_s, name, list(quote_s, source_loc(form), nao), nao);
}
+val load(val target)
+{
+ return sys_load(target, nil);
+}
+
static val expand_catch_clause(val form, val menv)
{
val sym = first(form);