From 76a3778ddaa06b064c4bff5164d8a2e9eeef7c56 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 27 Apr 2016 21:09:08 -0400 Subject: [PATCH] Improve formatting of "-d" output --- cyclone.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/cyclone.scm b/cyclone.scm index 7d7c8681..b86cbd6b 100644 --- a/cyclone.scm +++ b/cyclone.scm @@ -347,8 +347,10 @@ (if (equal? 0 (system comp-prog-cmd)) (system comp-objs-cmd))) (else - (write comp-prog-cmd) - (write comp-objs-cmd))))) + (display comp-prog-cmd) + (newline) + (display comp-objs-cmd) + (newline))))) (else ;; Emit .meta file (with-output-to-file @@ -364,7 +366,8 @@ (cc? (system comp-lib-cmd)) (else - (write comp-lib-cmd)))))))) + (display comp-lib-cmd) + (newline)))))))) ;; Handle command line arguments