summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>1996-11-02 20:51:37 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>1996-11-02 20:51:37 +0000
commit61529d8e6e9229d5cbaf03950c05e896e5b12b51 (patch)
tree58bd1558f333ab5816186c68037c3e0d011e3a00
parent21ed9efe51a118c5b0328e40545603502e8e0cd9 (diff)
downloadguile-61529d8e6e9229d5cbaf03950c05e896e5b12b51.tar.gz
* * 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.
-rw-r--r--ice-9/debug.scm3
1 files changed, 3 insertions, 0 deletions
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)