src/runtime/gcnote.scm (gc-statistic->string): Abbreviate...
authorMatt Birkholz <puck@birchwood-abbey.net>
Sun, 17 Jan 2016 18:49:04 +0000 (11:49 -0700)
committerMatt Birkholz <puck@birchwood-abbey.net>
Sun, 17 Jan 2016 18:49:04 +0000 (11:49 -0700)
...to keep each line under 80 columns (at least at first).

src/runtime/gcnote.scm

index 141f4fb05d64799ebd067235c13e78cedbfd7da1..20815e19d6c3babb33f88dd61f4fced581d3ae9d 100644 (file)
@@ -227,10 +227,10 @@ USA.
                    (gc-statistic/this-gc-start statistic)
                    (gc-statistic/this-gc-end statistic)
                    (gc-statistic/last-gc-end statistic))
-                  " CPU time, "
+                  " CPU, "
                   (intervals->string
                    (gc-statistic/this-gc-start-clock statistic)
                    (gc-statistic/this-gc-end-clock statistic)
                    (gc-statistic/last-gc-end-clock statistic))
-                  " real time; free: "
+                  " real; free: "
                   (number->string (gc-statistic/heap-left statistic)))))
\ No newline at end of file