summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-07-01 17:32:03 +0200
committerLudovic Courtès <ludo@gnu.org>2012-07-02 11:00:13 +0200
commitbd5dea489bd02caa503ba57e1b799c90fa409fe9 (patch)
tree5ffbbbc595e91dd2e3389c49d95dcbbb1a7cf4fd
parent2874f66017b7bfae256e85af84689d00ecc418ab (diff)
downloadguile-bd5dea489bd02caa503ba57e1b799c90fa409fe9.tar.gz
doc: Remove reference to `closure?', now deprecated.
Fixed <http://bugs.gnu.org/11611>. * doc/ref/api-procedures.texi (Procedure Properties): Remove reference to `closure?'. Suggested by David Jaquay <djaquay@gmail.com>.
-rw-r--r--THANKS1
-rw-r--r--doc/ref/api-procedures.texi9
2 files changed, 5 insertions, 5 deletions
diff --git a/THANKS b/THANKS
index 1b61a8190..5bfe6e364 100644
--- a/THANKS
+++ b/THANKS
@@ -88,6 +88,7 @@ For fixes or providing information which led to a fix:
Peter Ivanyi
Wolfgang Jaehrling
Aubrey Jaffer
+ David Jaquay
Paul Jarc
Steve Juranich
Richard Kim
diff --git a/doc/ref/api-procedures.texi b/doc/ref/api-procedures.texi
index 0e0ad15f2..02d777155 100644
--- a/doc/ref/api-procedures.texi
+++ b/doc/ref/api-procedures.texi
@@ -643,10 +643,8 @@ properties interface.
The first group of procedures in this meta-interface are predicates to
test whether a Scheme object is a procedure, or a special procedure,
-respectively. @code{procedure?} is the most general predicates, it
-returns @code{#t} for any kind of procedure. @code{closure?} does not
-return @code{#t} for primitive procedures, and @code{thunk?} only
-returns @code{#t} for procedures which do not accept any arguments.
+respectively. @code{procedure?} is the most general predicates, it
+returns @code{#t} for any kind of procedure.
@rnindex procedure?
@deffn {Scheme Procedure} procedure? obj
@@ -656,7 +654,8 @@ Return @code{#t} if @var{obj} is a procedure.
@deffn {Scheme Procedure} thunk? obj
@deffnx {C Function} scm_thunk_p (obj)
-Return @code{#t} if @var{obj} is a thunk.
+Return @code{#t} if @var{obj} is a thunk---a procedure that does
+not accept arguments.
@end deffn
@cindex procedure properties