diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-10-15 07:56:56 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-10-15 07:56:56 -0400 |
commit | 9401b52f400b85c5c61acdd299e59a848991d3e4 (patch) | |
tree | bd876cd3c13eedd02027d26b5e84f535d09129b6 | |
parent | 7afecd8a450c227097e15d3a1f7209b09dc90bfe (diff) |
cli: play: Wrap line over 80 characters.
-rw-r--r-- | chickadee/cli/play.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chickadee/cli/play.scm b/chickadee/cli/play.scm index 410b823..31fae99 100644 --- a/chickadee/cli/play.scm +++ b/chickadee/cli/play.scm @@ -216,7 +216,8 @@ Resume the game loop without entering a debugger." "unknown") (if (and (exception-with-message? e) (exception-with-irritants? e)) - (apply format #f (exception-message e) (exception-irritants e)) + (apply format #f (exception-message e) + (exception-irritants e)) "")))) (set! debug (make-debug (narrow-stack->vector stack 0) 0 error-string)) ;; Just update the REPL endlessly until the developer says to |