diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-01-16 11:19:36 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-01-16 11:19:36 +0000 |
commit | debe0dc24ffb36c0e53c6e48caff1ee5d9ad4eb6 (patch) | |
tree | 4dcbb9156fa1c57cd49a857813e0085e80a1449b | |
parent | 8a39e3fc79cfe382e5f5844fbd5750eb4ea05e28 (diff) | |
download | guile-debe0dc24ffb36c0e53c6e48caff1ee5d9ad4eb6.tar.gz |
* Comment fixed.
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | libguile/ChangeLog | 5 | ||||
-rw-r--r-- | libguile/symbols.c | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -15,6 +15,7 @@ For fixes or providing information which led to a fix: Lars J. Aas Ian Bicking George Caswell + Chris Cramer I. N. Golubev Brad Knotwell Matthias Köppe diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 5b73ff0f0..47ee02b89 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,8 @@ +2001-01-16 Dirk Herrmann <D.Herrmann@tu-bs.de> + + * symbols.c (scm_symbol_bound_p): Fixed comment. + Thanks to Chris Cramer. + 2001-01-15 Dirk Herrmann <D.Herrmann@tu-bs.de> * smob.[ch] (scm_make_smob_type): Return type is scm_bits_t now. diff --git a/libguile/symbols.c b/libguile/symbols.c index 779369748..a212b3126 100644 --- a/libguile/symbols.c +++ b/libguile/symbols.c @@ -633,7 +633,7 @@ SCM_DEFINE (scm_symbol_bound_p, "symbol-bound?", 2, 0, 0, (SCM o, SCM s), "Return @var{#t} if @var{obarray} contains a symbol with name\n" "@var{string} bound to a defined value. This differs from\n" - "@var{symbol-bound?} in that the mere mention of a symbol usually causes\n" + "@var{symbol-interned?} in that the mere mention of a symbol usually causes\n" "it to be interned; @code{symbol-bound?} determines whether a symbol has\n" "been given any meaningful value.") #define FUNC_NAME s_scm_symbol_bound_p |