summaryrefslogtreecommitdiff
path: root/module/system/repl/command.scm
diff options
context:
space:
mode:
authorBT Templeton <bpt@hcoop.net>2011-07-22 11:35:30 -0400
committerLudovic Courtès <ludo@gnu.org>2011-10-22 12:46:56 +0200
commit74e4dd279863cfe71b74a8db4b099c727c1ce3b0 (patch)
treeeb88a5950b4fe48ba268a48e0abe28fd9fe87851 /module/system/repl/command.scm
parent13d807b7d36594676c5aa683c595eca8dbe26b57 (diff)
downloadguile-74e4dd279863cfe71b74a8db4b099c727c1ce3b0.tar.gz
set width for `,trace' command
* module/system/repl/command.scm (trace): Set trace width to terminal width by default.
Diffstat (limited to 'module/system/repl/command.scm')
-rw-r--r--module/system/repl/command.scm2
1 files changed, 1 insertions, 1 deletions
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)))
;;;