1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

* debugger.scm: Remove comments which are now incorrect.

This commit is contained in:
Neil Jerram 2005-07-09 15:05:27 +00:00
parent d5c3f236eb
commit 4199ace57f
2 changed files with 3 additions and 27 deletions

View file

@ -1,5 +1,7 @@
2005-07-09 Neil Jerram <neil@ossau.uklinux.net>
* debugger.scm: Remove comments which are now incorrect.
* debugger/Makefile.am (ice9_debugger_sources): Removed
breakpoints.scm, behaviour.scm, trap-hooks.scm.
(SUBDIRS): Removed.

View file

@ -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 <neil@ossau.uklinux.net> 2002-10-26
;;; - Neil Jerram <neil@ossau.uklinux.net> 2002-10-26, updated 2005-07-09
(define *not-yet-introduced* #t)