summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 1e5919cf..2afc431c 100644
--- a/eval.c
+++ b/eval.c
@@ -3423,7 +3423,7 @@ static val symbol_function(val sym)
gethash(op_table, sym));
}
-static val boundp(val sym)
+val boundp(val sym)
{
return if2(lookup_var(nil, sym) || lookup_symac(nil, sym), t);
}