aboutsummaryrefslogtreecommitdiff
path: root/src/interp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp.c')
-rw-r--r--src/interp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interp.c b/src/interp.c
index f03a688..e5e9167 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -55,6 +55,7 @@ void Interp_init(Interp *self) {
Interp_add_primitive(self, "funcall", primitive_funcall);
Interp_add_primitive(self, "apply", primitive_apply);
Interp_add_primitive(self, "quote", primitive_quote);
+ Interp_add_primitive(self, "quasiquote", primitive_quasi);
Interp_add_userfunc(self, "eval", lisp_eval);
Interp_add_userfunc(self, "show", builtin_show);