From 023b5e98b22cc6836fc7af17ea9681af59fe4f8f Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 7 Aug 2018 07:22:37 -0700 Subject: compiler: typo in error message. * share/txr/stdlib/compiler.tl (expand-quasi-mods): Fix misspelled "missing". Small repro test case to trigger the diagnostic: (compile-toplevel '`@{"" []}`) where, note, there is nothing between the square brackets. --- share/txr/stdlib/compiler.tl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/txr/stdlib/compiler.tl b/share/txr/stdlib/compiler.tl index 34f29c03..0b8202da 100644 --- a/share/txr/stdlib/compiler.tl +++ b/share/txr/stdlib/compiler.tl @@ -1250,7 +1250,7 @@ (compile-error form "duplicate modifier (range/index): ~s" mel)) (unless (consp (cdr mel)) - (compile-error form "misisng argument in range/index: ~s" + (compile-error form "missing argument in range/index: ~s" mel)) (unless (null (cddr mel)) (compile-error form "excess args in range/index: ~s" -- cgit v1.2.3