From 74e4dd279863cfe71b74a8db4b099c727c1ce3b0 Mon Sep 17 00:00:00 2001 From: BT Templeton Date: Fri, 22 Jul 2011 11:35:30 -0400 Subject: [PATCH] set width for `,trace' command * module/system/repl/command.scm (trace): Set trace width to terminal width by default. --- module/system/repl/command.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/system/repl/command.scm b/module/system/repl/command.scm index e27ca9a30..3fead7cac 100644 --- a/module/system/repl/command.scm +++ b/module/system/repl/command.scm @@ -529,7 +529,7 @@ Trace execution." ;; FIXME: doc options, or somehow deal with them better (apply call-with-trace (repl-prepare-eval-thunk repl (repl-parse repl form)) - opts)) + (cons* #:width (terminal-width) opts))) ;;;