summaryrefslogtreecommitdiff
path: root/libguile/stacks.c
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2006-08-11 15:33:41 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2006-08-11 15:33:41 +0000
commitb0b0deff2decac0f6b3249a4e9a5f323426807b8 (patch)
tree5f4888e66300596f3d9b51dc9538a412ee73a8a0 /libguile/stacks.c
parentc9ef37410d864b4b5b8bcc0c2500a7700d80c358 (diff)
downloadguile-b0b0deff2decac0f6b3249a4e9a5f323426807b8.tar.gz
(scm_last_stack_frame): Correct docstring (returns a
frame, not a stack).
Diffstat (limited to 'libguile/stacks.c')
-rw-r--r--libguile/stacks.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libguile/stacks.c b/libguile/stacks.c
index 9457ccc13..de85522ca 100644
--- a/libguile/stacks.c
+++ b/libguile/stacks.c
@@ -581,9 +581,8 @@ SCM_DEFINE (scm_frame_p, "frame?", 1, 0, 0,
SCM_DEFINE (scm_last_stack_frame, "last-stack-frame", 1, 0, 0,
(SCM obj),
- "Return a stack which consists of a single frame, which is the\n"
- "last stack frame for @var{obj}. @var{obj} must be either a\n"
- "debug object or a continuation.")
+ "Return the last (innermost) frame of @var{obj}, which must be\n"
+ "either a debug object or a continuation.")
#define FUNC_NAME s_scm_last_stack_frame
{
scm_t_debug_frame *dframe;