(scm_last_stack_frame): Correct docstring (returns a
authorNeil Jerram <neil@ossau.uklinux.net>
Fri, 11 Aug 2006 15:33:41 +0000 (15:33 +0000)
committerNeil Jerram <neil@ossau.uklinux.net>
Fri, 11 Aug 2006 15:33:41 +0000 (15:33 +0000)
frame, not a stack).

libguile/ChangeLog
libguile/stacks.c

index f8e6c34..11001fb 100644 (file)
@@ -1,3 +1,8 @@
+2006-08-11  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * stacks.c (scm_last_stack_frame): Correct docstring (returns a
+       frame, not a stack).
+
 2006-07-18  Rob Browning  <rlb@defaultvalue.org>
 
        * continuations.c: Add __attribute__ ((returns_twice)) to the
index 9457ccc..de85522 100644 (file)
@@ -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;