diff options
-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 |