* eval.c (s_scm_copy_tree): idem.
authorHan-Wen Nienhuys <hanwen@lilypond.org>
Sun, 28 Mar 2004 13:57:19 +0000 (13:57 +0000)
committerHan-Wen Nienhuys <hanwen@lilypond.org>
Sun, 28 Mar 2004 13:57:19 +0000 (13:57 +0000)
* list.c (s_scm_filter): remove "pointer" from doc string.

libguile/ChangeLog
libguile/eval.c
libguile/list.c

index 747f0de..36f09ed 100644 (file)
@@ -1,5 +1,9 @@
 2004-03-28  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
+       * eval.c (s_scm_copy_tree): idem.
+
+       * list.c (s_scm_filter): remove "pointer" from doc string.
+
        * gc.h (SCM_GC_CELL_TYPE): SCM_GC_CELL_TYPE uses SCM_GC_CELL_OBJECT.
 
        * goops.h (SCM_NUMBER_OF_SLOTS): don't SCM_UNPACK the result.
index bc1b971..97db5eb 100644 (file)
@@ -5462,7 +5462,7 @@ copy_tree (
 SCM_DEFINE (scm_copy_tree, "copy-tree", 1, 0, 0, 
             (SCM obj),
            "Recursively copy the data tree that is bound to @var{obj}, and return a\n"
-           "pointer to the new data structure.  @code{copy-tree} recurses down the\n"
+           "the new data structure.  @code{copy-tree} recurses down the\n"
            "contents of both pairs and vectors (since both cons cells and vector\n"
            "cells may point to arbitrary objects), and stops recursing when it hits\n"
            "any other object.")
index 56b399f..ac5449f 100644 (file)
@@ -614,7 +614,7 @@ SCM_DEFINE (scm_delq_x, "delq!", 2, 0, 0,
            "@deffnx {Scheme Procedure} delv! item lst\n"
            "@deffnx {Scheme Procedure} delete! item lst\n"
            "These procedures are destructive versions of @code{delq}, @code{delv}\n"
-           "and @code{delete}: they modify the pointers in the existing @var{lst}\n"
+           "and @code{delete}: they modify the existing @var{lst}\n"
            "rather than creating a new list.  Caveat evaluator: Like other\n"
            "destructive list functions, these functions cannot modify the binding of\n"
            "@var{lst}, and so cannot be used to delete the first element of\n"