summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-03-29 21:09:50 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-03-29 21:09:50 -0700
commit7e71f873eabce5a092ab3a054c508a2327cd5299 (patch)
treee49c510fb24cb76e8a62798a0d65c0c3a96a76c7 /share
parent9e84c4f3f1796c23c94ad10525da4966115786b5 (diff)
downloadtxr-7e71f873eabce5a092ab3a054c508a2327cd5299.tar.gz
txr-7e71f873eabce5a092ab3a054c508a2327cd5299.tar.bz2
txr-7e71f873eabce5a092ab3a054c508a2327cd5299.zip
compiler: change message for uhandled special op.
* share/txr/stdlib/compiler.tl (compiler compile): All special forms are handled, so "not handled yet" wording is inappropriate. Going forward, no special form will be added without compiler support.
Diffstat (limited to 'share')
-rw-r--r--share/txr/stdlib/compiler.tl2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/txr/stdlib/compiler.tl b/share/txr/stdlib/compiler.tl
index b6e9e786..b7b51152 100644
--- a/share/txr/stdlib/compiler.tl
+++ b/share/txr/stdlib/compiler.tl
@@ -234,7 +234,7 @@
sys:qquote sys:unquote sys:splice)
(compile-error form "unexpanded quasiquote encountered"))
(t
- (compile-error form "special op ~s not handled yet" sym))))
+ (compile-error form "unrecognized special operator ~s" sym))))
((bindable sym) me.(comp-fun-form oreg env form))
(t (compile-error form "invalid operator")))))))