From 7e71f873eabce5a092ab3a054c508a2327cd5299 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 29 Mar 2018 21:09:50 -0700 Subject: 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. --- share/txr/stdlib/compiler.tl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'share') 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"))))))) -- cgit v1.2.3