diff options
Diffstat (limited to 'share')
-rw-r--r-- | share/txr/stdlib/compiler.tl | 2 |
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"))))))) |