1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

fix ice-9 debugging error

* ice-9/debugging/ice-9-debugger-extensions.scm: Import ice-9 debugging
  trace, to fix an error on finish. Thanks to Ian Hulin.
This commit is contained in:
Andy Wingo 2010-08-04 20:57:23 +02:00
parent 7e6f4be53e
commit 5c8c9d05ae

View file

@ -39,7 +39,8 @@
(else (else
(define-module (ice-9 debugger)))) (define-module (ice-9 debugger))))
(use-modules (ice-9 debugging steps)) (use-modules (ice-9 debugging steps)
(ice-9 debugging trace))
(define (assert-continuable state) (define (assert-continuable state)
;; Check that debugger is in a state where `continuing' makes sense. ;; Check that debugger is in a state where `continuing' makes sense.