diff options
author | BT Templeton <bpt@hcoop.net> | 2011-07-22 11:35:30 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-10-22 12:46:56 +0200 |
commit | 74e4dd279863cfe71b74a8db4b099c727c1ce3b0 (patch) | |
tree | eb88a5950b4fe48ba268a48e0abe28fd9fe87851 | |
parent | 13d807b7d36594676c5aa683c595eca8dbe26b57 (diff) | |
download | guile-74e4dd279863cfe71b74a8db4b099c727c1ce3b0.tar.gz |
set width for `,trace' command
* module/system/repl/command.scm (trace): Set trace width to terminal
width by default.
-rw-r--r-- | module/system/repl/command.scm | 2 |
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))) ;;; |