Fix typo.
authorLudovic Courtès <ludo@gnu.org>
Sun, 10 Oct 2010 17:09:20 +0000 (19:09 +0200)
committerLudovic Courtès <ludo@gnu.org>
Sun, 10 Oct 2010 17:10:11 +0000 (19:10 +0200)
* module/system/repl/command.scm (repl-pop-continuation-resumer): Remove
  extraneous argument to `format'.

module/system/repl/command.scm

index f5512ff..ef2c5a6 100644 (file)
@@ -612,9 +612,9 @@ Note that the given source location must be inside a procedure."
          (format #t "~a~%" msg)
          (let ((vals (frame-return-values from)))
            (if (null? vals)
-               (format #t "No return values.~%" msg)
+               (format #t "No return values.~%")
                (begin
-                 (format #t "Return values:~%" msg)
+                 (format #t "Return values:~%")
                  (for-each (lambda (x) (repl-print repl x)) vals))))
          ((module-ref (resolve-interface '(system repl repl)) 'start-repl)
           #:debug (make-debug stack 0 msg))))))