From 6786d5360d68ee0ef073535aa575206867c52744 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Sun, 17 Jan 2016 11:49:04 -0700 Subject: [PATCH] src/runtime/gcnote.scm (gc-statistic->string): Abbreviate... ...to keep each line under 80 columns (at least at first). --- src/runtime/gcnote.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/gcnote.scm b/src/runtime/gcnote.scm index 141f4fb05..20815e19d 100644 --- a/src/runtime/gcnote.scm +++ b/src/runtime/gcnote.scm @@ -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 -- 2.25.1