* top-level-value error now prints the names of the symbol using ~a
instead of ~s.
This commit is contained in:
parent
1932db8d65
commit
008457c5f8
BIN
src/ikarus.boot
BIN
src/ikarus.boot
Binary file not shown.
|
@ -65,7 +65,7 @@
|
||||||
[(symbol? x)
|
[(symbol? x)
|
||||||
(if (symbol-bound? x)
|
(if (symbol-bound? x)
|
||||||
(error 'top-level-value "BUG in ~s" x)
|
(error 'top-level-value "BUG in ~s" x)
|
||||||
(error 'top-level-value "~s is unbound" x))]
|
(error 'top-level-value "~a is unbound" x))]
|
||||||
[else
|
[else
|
||||||
(error 'top-level-value "~s is not a symbol" x)])))
|
(error 'top-level-value "~s is not a symbol" x)])))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue