diff options
author | Andy Wingo <wingo@pobox.com> | 2010-08-12 13:04:08 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-08-16 21:36:14 -0700 |
commit | 7545ddd42a065da0d50b2d84e7889aeb5d71326b (patch) | |
tree | 61a0709f1389e41cce765f5f1ca9634ac9180cea /libguile/backtrace.h | |
parent | 46088b26299cf427cd887c6289ea564ec33ecffb (diff) | |
download | guile-7545ddd42a065da0d50b2d84e7889aeb5d71326b.tar.gz |
a number of doc fixes
* doc/ref/api-control.texi (Handling Errors): Update docs for
display-error.
* libguile/backtrace.h (scm_i_display_error): Change prototype to
s/stack/frame/.
* libguile/throw.c (handler_message): Change invocation of
scm_i_display_error to pass a frame.
* doc/ref/api-deprecated.texi (Deprecation): Update wording.
* doc/ref/api-evaluation.texi (Local Evaluation): Remove section on
local-eval.
* doc/ref/api-macros.texi: Fix a couple typos.
* doc/ref/api-memory.texi (Objects): Remove terrible section.
* doc/ref/api-procedures.texi (Procedure Properties): Remove docs for
closure?.
(Compiled Procedures): Update wording.
* doc/ref/guile.texi (API Reference): Remove reference to "Objects".
Diffstat (limited to 'libguile/backtrace.h')
-rw-r--r-- | libguile/backtrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/backtrace.h b/libguile/backtrace.h index a8c6cc5d6..bc593bcc7 100644 --- a/libguile/backtrace.h +++ b/libguile/backtrace.h @@ -26,7 +26,7 @@ #include "libguile/__scm.h" SCM_API void scm_display_error_message (SCM message, SCM args, SCM port); -SCM_INTERNAL void scm_i_display_error (SCM stack, SCM port, SCM subr, +SCM_INTERNAL void scm_i_display_error (SCM frame, SCM port, SCM subr, SCM message, SCM args, SCM rest); SCM_API SCM scm_display_error (SCM frame, SCM port, SCM subr, SCM message, SCM args, SCM rest); SCM_API SCM scm_display_application (SCM frame, SCM port, SCM indent); |