summaryrefslogtreecommitdiff
path: root/libguile/eval.c
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 /libguile/eval.c
parent702551e6cc41e90745ca5f8626956ecab46c41c9 (diff)
downloadguile-bfefbf18db155401136f12fc781235f7d8093383.tar.gz
* eval.c (s_scm_copy_tree): idem.
* list.c (s_scm_filter): remove "pointer" from doc string.
Diffstat (limited to 'libguile/eval.c')
-rw-r--r--libguile/eval.c2
1 files changed, 1 insertions, 1 deletions
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.")