From 9401b52f400b85c5c61acdd299e59a848991d3e4 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 15 Oct 2022 07:56:56 -0400 Subject: cli: play: Wrap line over 80 characters. --- chickadee/cli/play.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3