diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-08-07 07:22:37 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-08-07 07:22:37 -0700 |
commit | 023b5e98b22cc6836fc7af17ea9681af59fe4f8f (patch) | |
tree | c5112acad22a3ead6707fd569e71ff08ad450721 | |
parent | 88601eb51c491c1a4008e15efa8e8cfecb162726 (diff) | |
download | txr-023b5e98b22cc6836fc7af17ea9681af59fe4f8f.tar.gz txr-023b5e98b22cc6836fc7af17ea9681af59fe4f8f.tar.bz2 txr-023b5e98b22cc6836fc7af17ea9681af59fe4f8f.zip |
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.
-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 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" |