From 16b8ebbe8190e935d404a2a53b31b956228af859 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Mon, 30 Mar 1998 21:07:52 +0000 Subject: [PATCH] * boot-9.scm: Added new run-time option interface eval-options. --- ice-9/ChangeLog | 4 ++++ ice-9/boot-9.scm | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index baeb90270..5b861175c 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,7 @@ +1998-03-30 Mikael Djurfeldt + + * boot-9.scm: Added new run-time option interface eval-options. + 1998-03-28 Mikael Djurfeldt * boot-9.scm (remove-hook!): New macro. (Thanks to Maciej diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm index bef612632..f92ae0b97 100644 --- a/ice-9/boot-9.scm +++ b/ice-9/boot-9.scm @@ -2223,7 +2223,11 @@ ;;; {Run-time options} -((let* ((names '((debug-options-interface +((let* ((names '((eval-options-interface + (eval-options eval-enable eval-disable) + (eval-set!)) + + (debug-options-interface (debug-options debug-enable debug-disable) (debug-set!))