summaryrefslogtreecommitdiff
path: root/libguile/eq.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2004-12-10 00:49:51 +0000
committerKevin Ryde <user42@zip.com.au>2004-12-10 00:49:51 +0000
commit4450a22762c8ea0c4e53895ab26f7e44400fa596 (patch)
tree31db58cf3913e151c67620731e2d3f06a20fed4b /libguile/eq.c
parent86347b2bf395361827d13b9866e0919279a501b5 (diff)
downloadguile-4450a22762c8ea0c4e53895ab26f7e44400fa596.tar.gz
More of:
(scm_eq_p, scm_eqv_p, scm_equal_p): Update docstrings from recent revision to the reference manual.
Diffstat (limited to 'libguile/eq.c')
-rw-r--r--libguile/eq.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libguile/eq.c b/libguile/eq.c
index 1f0aff8f6..e0726a07a 100644
--- a/libguile/eq.c
+++ b/libguile/eq.c
@@ -65,18 +65,18 @@ SCM_DEFINE1 (scm_eq_p, "eq?", scm_tc7_rpsubr,
"Generally @code{eqv?} should be used when comparing numbers or\n"
"characters. @code{=} or @code{char=?} can be used too.\n"
"\n"
- "It's worth noting that end-of-list @code{()}, @code{#t}, @code{#f}, a\n"
- "symbol of a given name, and a keyword of a given name, are unique\n"
- "objects. There's just one of each, so for instance no matter how\n"
- "@code{()} arises in a program, it's the same object and can be\n"
- "compared with @code{eq?},\n"
+ "It's worth noting that end-of-list @code{()}, @code{#t},\n"
+ "@code{#f}, a symbol of a given name, and a keyword of a given\n"
+ "name, are unique objects. There's just one of each, so for\n"
+ "instance no matter how @code{()} arises in a program, it's the\n"
+ "same object and can be compared with @code{eq?},\n"
"\n"
"@example\n"
"(define x (cdr '(123)))\n"
"(define y (cdr '(456)))\n"
"(eq? x y) @result{} #t\n"
"\n"
- "(define x (string->symbol "foo"))\n"
+ "(define x (string->symbol \"foo\"))\n"
"(eq? x 'foo) @result{} #t\n"
"@end example")
#define FUNC_NAME s_scm_eq_p