summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.y b/parser.y
index 2c48e43b..67409d4b 100644
--- a/parser.y
+++ b/parser.y
@@ -1114,7 +1114,7 @@ static val unquotes_occur(val quoted_form, int level)
return nil;
} else {
val sym = car(quoted_form);
- if (sym == unquote_s || sym == sys_splice_s)
+ if (sym == sys_unquote_s || sym == sys_splice_s)
return (level == 0) ? t : unquotes_occur(cdr(quoted_form), level - 1);
if (sym == sys_qquote_s)
return unquotes_occur(cdr(quoted_form), level + 1);