diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2008-03-19 22:51:24 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2008-03-19 22:51:24 +0000 |
commit | 24dbb5ed1080132c1dc67bf100d10ab4cc011af1 (patch) | |
tree | 166a47d34204621bb5fa4a05ebdcd54f55d6a59f /doc/ref/api-options.texi | |
parent | cc7e01ceddaae8723feeedf33cca4fd106111025 (diff) | |
download | guile-24dbb5ed1080132c1dc67bf100d10ab4cc011af1.tar.gz |
* api-debug.texi (Low Level Trap Calls): Removed (material
duplicated elsewhere); doc for with-traps and debug-object? moved
to section on evaluator trap options.
(High Level Traps): Renamed just `Traps'. Add references to
evaluator trap options and debug options. Make language
appropriate for core Guile (as opposed to previously separate
package).
(Location Traps): Corrected to reflect that location traps now
specify a specific position, not a range of positions.
(Debugging Examples): New (content moved here from
scheme-debugging.texi, and updated to use traps instead of
breakpoints).
* api-modules.texi (Included Guile Modules): Change `Debugging
Features' reference to `Tracing'.
* api-options.texi (Evaluator trap options): Doc for with-traps
and debug-object? is now here.
* guile.texi, scheme-debugging.texi: Move the `Tracing' content of
scheme-debugging.texi to the Modules section.
* scheme-using.texi (Using Guile in Emacs, GDS Getting Started):
Minor edits.
* scheme-debugging.texi (Debugging Features, Intro to
Breakpoints): Removed.
(Examples): Moved to api-debug.texi.
(Tracing, Old Tracing): Promoted one level.
(New Tracing, Tracing Compared): Removed.
Diffstat (limited to 'doc/ref/api-options.texi')
-rw-r--r-- | doc/ref/api-options.texi | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/ref/api-options.texi b/doc/ref/api-options.texi index 493e2385d..c44de8c59 100644 --- a/doc/ref/api-options.texi +++ b/doc/ref/api-options.texi @@ -613,7 +613,6 @@ way. @var{retval} is the return value. @end deffn - @deffn memoize-symbol-handler key cont expression env Called when the evaluator memoizes the value of a procedure symbol @@ -626,6 +625,16 @@ way. @var{retval} is the return value. @end deffn +@deffn {Scheme Procedure} with-traps thunk +@deffnx {C Function} scm_with_traps (thunk) +Call @var{thunk} with traps enabled. +@end deffn + +@deffn {Scheme Procedure} debug-object? obj +@deffnx {C Function} scm_debug_object_p (obj) +Return @code{#t} if @var{obj} is a debug object. +@end deffn + @node Debugger options @subsubsection Debugger options |