summaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.c b/debug.c
index df8426fe..afef0835 100644
--- a/debug.c
+++ b/debug.c
@@ -71,7 +71,7 @@ static void show_bindings(val env, val stream)
put_string(lit("bindings:\n"), stream);
for (;; level = plus(level, one)) {
- if (nullp(env))
+ if (nilp(env))
break;
else if (consp(env)) {
format(stream, lit("~s: ~s\n"), level, env, nao);