From 61529d8e6e9229d5cbaf03950c05e896e5b12b51 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sat, 2 Nov 1996 20:51:37 +0000 Subject: [PATCH] * * boot-9.scm: The debugging evaluator and recording of positions aren't enabled by default any longer (they are switched on in debug.scm). But during development we want to have them also * debug.scm: Enable debugging evaluator and recording of positions by default. --- ice-9/debug.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ice-9/debug.scm b/ice-9/debug.scm index 500f9b80e..20e67f9cf 100644 --- a/ice-9/debug.scm +++ b/ice-9/debug.scm @@ -115,3 +115,6 @@ ;;; A fix to get the error handling working together with the module system. ;;; (variable-set! (builtin-variable 'debug-options) debug-options) + +(debug-enable 'debug) +(read-enable 'positions)