fasl-write now returns void instead of the meaningless number it used to return

This commit is contained in:
Abdulaziz Ghuloum 2006-12-26 06:25:35 +03:00
parent 4fa2bdf0d9
commit d41a2c0096
2 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

@ -217,7 +217,8 @@
(write-char #\K port)
(write-char #\0 port)
(write-char #\1 port)
(fasl-write x port h 1))))
(fasl-write x port h 1)
(void))))
(primitive-set! 'fasl-write
(case-lambda
[(x) (do-fasl-write x (current-output-port))]