diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-04-24 23:28:36 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-04-24 23:28:36 +0000 |
commit | 07de6c4737a003e7fac90c980029103aee09eebd (patch) | |
tree | 22fb11b69280e478ecd1e1d2289d8f0bec7445ac /libguile/gh_data.c | |
parent | bcdab802c99253f9a81caef7b3c70014f1f58bde (diff) | |
download | guile-07de6c4737a003e7fac90c980029103aee09eebd.tar.gz |
* gh_data.c: Removed FIXME comment about gh_lookup returning
SCM_UNDEFINED. That's the right thing to do.
Diffstat (limited to 'libguile/gh_data.c')
-rw-r--r-- | libguile/gh_data.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libguile/gh_data.c b/libguile/gh_data.c index e431208b3..86ad5a2c1 100644 --- a/libguile/gh_data.c +++ b/libguile/gh_data.c @@ -704,10 +704,8 @@ gh_uniform_vector_ref (SCM v, SCM ilist) `vec' argument. The return value is the Scheme object to which SNAME is bound, or - SCM_UNDEFINED if SNAME is not bound in the given context. [FIXME: - should this be SCM_UNSPECIFIED? Can a symbol ever legitimately be - bound to SCM_UNDEFINED or SCM_UNSPECIFIED? What is the difference? - -twp] */ + SCM_UNDEFINED if SNAME is not bound in the given context. + */ SCM gh_lookup (const char *sname) |