From 4199ace57f6253397cb620b93b1836c6361d359d Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Sat, 9 Jul 2005 15:05:27 +0000 Subject: [PATCH] * debugger.scm: Remove comments which are now incorrect. --- ice-9/ChangeLog | 2 ++ ice-9/debugger.scm | 28 +--------------------------- 2 files changed, 3 insertions(+), 27 deletions(-) diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index 6b033a738..33530a0ec 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,5 +1,7 @@ 2005-07-09 Neil Jerram + * debugger.scm: Remove comments which are now incorrect. + * debugger/Makefile.am (ice9_debugger_sources): Removed breakpoints.scm, behaviour.scm, trap-hooks.scm. (SUBDIRS): Removed. diff --git a/ice-9/debugger.scm b/ice-9/debugger.scm index 094db8905..da1404935 100644 --- a/ice-9/debugger.scm +++ b/ice-9/debugger.scm @@ -58,33 +58,7 @@ ;;; any other that implements the `debugger-command-loop-*' interface ;;; simply by changing the relevant #:use-module line above. ;;; -;;; The following new parts add breakpoint support: -;;; -;;; (... behaviour) - codification of the things that can happen when -;;; a breakpoint is hit, regardless of the type of -;;; the breakpoint -;;; -;;; (... breakpoints) - management of breakpoints in general -;;; -;;; (... breakpoints procedural) - breakpoints that trigger upon -;;; application of a specified -;;; procedure -;;; -;;; (... breakpoints source) - breakpoints that trigger upon -;;; evaluation of a specific source -;;; expression -;;; -;;; (... trap-hooks) - a (slightly) higher-level abstraction of -;;; Guile's evaluator traps interface -;;; -;;; (... trc) - generic tracing interface for debugging tricky code -;;; using the `printf' method :-) -;;; -;;; Note that (... breakpoints range) doesn't work yet. If loaded, it -;;; seems to cause some kind of explosion in the GOOPS method cache -;;; calculation code. -;;; -;;; - Neil Jerram 2002-10-26 +;;; - Neil Jerram 2002-10-26, updated 2005-07-09 (define *not-yet-introduced* #t)