1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-27 23:40:24 +02:00

* boot-9.scm: Fixed the sense of the error message when read-eval?

is #f.  Thanks to Matthias for catching this.
This commit is contained in:
Rob Browning 2001-07-09 14:28:03 +00:00
parent dbb640bd08
commit 71335c0d9d

View file

@ -787,7 +787,7 @@
(if (fluid-ref read-eval?)
(eval (read port) (interaction-environment))
(error
"#. read expansion found and read-eval? is not #f."))))
"#. read expansion found and read-eval? is #f."))))
;;; {Command Line Options}