Use for-each instead of map

Since we don't need the result of going through all the views, we can
just discard it.
This commit is contained in:
Tom Willemsen 2012-09-16 14:23:55 +02:00
parent 3d7138e45a
commit c11e60df8b

View file

@ -204,7 +204,8 @@
((views) ((views)
(display "Defined views:") (display "Defined views:")
(newline) (newline)
(map (lambda (view) (for-each
(lambda (view)
(format #t "~a~20t~a~%" (format #t "~a~20t~a~%"
(car view) (procedure-documentation (cdr view)))) (car view) (procedure-documentation (cdr view))))
view-list))))) view-list)))))