From 27643d70976b1d5cf2ecea50cf11130654c01ba4 Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Fri, 18 Feb 2011 22:53:57 +0000 Subject: [PATCH] Remove unneeded fixme * doc/ref/goops.texi (Class Definition Protocol): Removed `*fixme Need to insert something here about checking that the value is not unbound'. It's a fine detail, and also I imagine there could be a valid application that would choose to allow SCM_GOOPS_UNBOUND values to escape through here. --- doc/ref/goops.texi | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/doc/ref/goops.texi b/doc/ref/goops.texi index e905dbb64..c6d272e47 100644 --- a/doc/ref/goops.texi +++ b/doc/ref/goops.texi @@ -2387,15 +2387,14 @@ calls@dots{} @item @code{compute-getter-method @var{class} @var{gns}} (generic) -@code{initialize} calls @code{compute-getter-method} for each of the class's -slots (as determined by @code{compute-slots}) that includes a +@code{initialize} calls @code{compute-getter-method} for each of the +class's slots (as determined by @code{compute-slots}) that includes a @code{#:getter} or @code{#:accessor} slot option. @var{gns} is the -element of the @var{class} metaobject's @code{getters-n-setters} slot that -specifies how the slot in question is referenced and set, as described -above under @code{compute-get-n-set}. The applied method should create -and return a method that is specialized for instances of type @var{class} -and uses the get closure to retrieve the slot's value. [ *fixme Need -to insert something here about checking that the value is not unbound. ] +element of the @var{class} metaobject's @code{getters-n-setters} slot +that specifies how the slot in question is referenced and set, as +described above under @code{compute-get-n-set}. The applied method +should create and return a method that is specialized for instances of +type @var{class} and uses the get closure to retrieve the slot's value. @code{initialize} uses @code{add-method!} to add the returned method to the generic function named by the slot definition's @code{#:getter} or @code{#:accessor} option.