remove extraneous path->string conversion

This commit is contained in:
Robby Findler 2011-09-04 23:53:13 -05:00
parent e4ddd0718a
commit bb71539233
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@
(lambda (p)
(set! did-one? #t)
(when (verbose)
(printf " making ~s\n" (path->string p))))])
(printf " making ~s\n" p)))])
(for ([file source-files])
(unless (file-exists? file)
(error mzc-symbol "file does not exist: ~a" file))

View File

@ -510,7 +510,7 @@
(parameterize ([compile-notify-handler
(lambda (path)
(when (compiler:option:somewhat-verbose)
(printf " making ~s\n" (path->string path))))])
(printf " making ~s\n" path)))])
(apply compile-collection-zos source-files))]
[(cc)
(for ([file source-files])