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 | 4b9068932fd96a3c15717ceeb257afaa1f0e2bb2 (patch) | |
tree | c5112acad22a3ead6707fd569e71ff08ad450721 /share | |
parent | 10eda95d8ed320f2dc10edd23bd7bdd238f13ace (diff) | |
download | txr-4b9068932fd96a3c15717ceeb257afaa1f0e2bb2.tar.gz txr-4b9068932fd96a3c15717ceeb257afaa1f0e2bb2.tar.bz2 txr-4b9068932fd96a3c15717ceeb257afaa1f0e2bb2.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.
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 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" |