summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@lilypond.org>2004-03-28 13:57:19 +0000
committerHan-Wen Nienhuys <hanwen@lilypond.org>2004-03-28 13:57:19 +0000
commitbfefbf18db155401136f12fc781235f7d8093383 (patch)
tree06a3b5984525b68afa94d152b643e143891de350
parent702551e6cc41e90745ca5f8626956ecab46c41c9 (diff)
downloadguile-bfefbf18db155401136f12fc781235f7d8093383.tar.gz
* eval.c (s_scm_copy_tree): idem.
* list.c (s_scm_filter): remove "pointer" from doc string.
-rw-r--r--libguile/ChangeLog4
-rw-r--r--libguile/eval.c2
-rw-r--r--libguile/list.c2
3 files changed, 6 insertions, 2 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog
index 747f0de98..36f09edf3 100644
--- a/libguile/ChangeLog
+++ b/libguile/ChangeLog
@@ -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.
diff --git a/libguile/eval.c b/libguile/eval.c
index bc1b97178..97db5eb48 100644
--- a/libguile/eval.c
+++ b/libguile/eval.c
@@ -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.")
diff --git a/libguile/list.c b/libguile/list.c
index 56b399f74..ac5449f80 100644
--- a/libguile/list.c
+++ b/libguile/list.c
@@ -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"