1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Add install-r7rs!, like install-r6rs!

* module/ice-9/boot-9.scm (install-r7rs!): New function.
This commit is contained in:
Andy Wingo 2019-11-16 14:32:51 +01:00
parent d914652c0a
commit 614f0ab75f

View file

@ -4556,6 +4556,12 @@ R6RS. @xref{R6RS Incompatibilities} in the manual."
(read-enable 'r6rs-hex-escapes)
(read-enable 'hungry-eol-escapes))
(define (install-r7rs!)
"Make changes to the default environment to better conform to the
R7RS."
(install-r6rs!)
(read-enable 'r7rs-symbols))
;;; {Deprecated stuff}