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:
parent
3d7138e45a
commit
c11e60df8b
1 changed files with 5 additions and 4 deletions
|
@ -204,7 +204,8 @@
|
||||||
((views)
|
((views)
|
||||||
(display "Defined views:")
|
(display "Defined views:")
|
||||||
(newline)
|
(newline)
|
||||||
(map (lambda (view)
|
(for-each
|
||||||
(format #t "~a~20t~a~%"
|
(lambda (view)
|
||||||
(car view) (procedure-documentation (cdr view))))
|
(format #t "~a~20t~a~%"
|
||||||
view-list)))))
|
(car view) (procedure-documentation (cdr view))))
|
||||||
|
view-list)))))
|
||||||
|
|
Loading…
Reference in a new issue