diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2006-08-11 15:33:41 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2006-08-11 15:33:41 +0000 |
commit | b0b0deff2decac0f6b3249a4e9a5f323426807b8 (patch) | |
tree | 5f4888e66300596f3d9b51dc9538a412ee73a8a0 /libguile/stacks.c | |
parent | c9ef37410d864b4b5b8bcc0c2500a7700d80c358 (diff) | |
download | guile-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.c | 5 |
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; |