From 3fcc798d33e5203ef46a73ab204090c9a2c5d5c4 Mon Sep 17 00:00:00 2001 From: "Greg J. Badros" Date: Tue, 7 Mar 2000 16:57:03 +0000 Subject: [PATCH] Fix example to use 'foo, not 'x, as symbol 'x does not seem to cause the problem. --- libguile/hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libguile/hash.c b/libguile/hash.c index c3255ea63..ddecec99f 100644 --- a/libguile/hash.c +++ b/libguile/hash.c @@ -169,7 +169,7 @@ SCM_DEFINE (scm_hashq, "hashq", 2, 0, 0, "Thus two calls to hashq where the keys are eq? are not\n" "guaranteed to deliver the same value if the key object gets\n" "garbage collected in between. This can happen, for example\n" - "with symbols: (hashq 'x n) (gc) (hashq 'x n) may produce two\n" + "with symbols: (hashq 'foo n) (gc) (hashq 'foo n) may produce two\n" "different values, since 'x will be garbage collected.") #define FUNC_NAME s_scm_hashq { @@ -204,7 +204,7 @@ SCM_DEFINE (scm_hashv, "hashv", 2, 0, 0, "Thus two calls to hashv where the keys are eqv? are not\n" "guaranteed to deliver the same value if the key object gets\n" "garbage collected in between. This can happen, for example\n" - "with symbols: (hashv 'x n) (gc) (hashv 'x n) may produce two\n" + "with symbols: (hashv 'foo n) (gc) (hashv 'foo n) may produce two\n" "different values, since 'x will be garbage collected.") #define FUNC_NAME s_scm_hashv {