summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-04-19 06:29:27 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-04-19 06:29:27 -0700
commit35db3eee550d7d97e35c1dc58615b6530dd13360 (patch)
tree2888d1f2a402f85761eb8f932d9aff4bd636569d
parentd1b7254ee6bf59b6ff6a97134f10061cf8090b29 (diff)
downloadtxr-35db3eee550d7d97e35c1dc58615b6530dd13360.tar.gz
txr-35db3eee550d7d97e35c1dc58615b6530dd13360.tar.bz2
txr-35db3eee550d7d97e35c1dc58615b6530dd13360.zip
new: remove superflous prefix from diagnostic.
* share/txr/stdlib/struct.tl (new-expander): Don't format prefix into error message; compile-error does that.
-rw-r--r--share/txr/stdlib/struct.tl3
1 files changed, 1 insertions, 2 deletions
diff --git a/share/txr/stdlib/struct.tl b/share/txr/stdlib/struct.tl
index 56d27e0a..bd62637f 100644
--- a/share/txr/stdlib/struct.tl
+++ b/share/txr/stdlib/struct.tl
@@ -279,8 +279,7 @@
(defun sys:new-expander (op form spec pairs)
(when (oddp (length pairs))
- (compile-error form
- "~s: slot initform arguments must occur pairwise" op))
+ (compile-error form "slot initform arguments must occur pairwise"))
(let ((qpairs (mappend (aret ^(',@1 ,@2)) (tuples 2 pairs))))
(tree-case spec
((texpr . args)