From 42be21d82afbede08c86bcde8203d1c94fdbd56e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 16 Jun 2006 07:39:59 +0000 Subject: [PATCH] Changes from arch/CVS synchronization --- doc/ref/ChangeLog | 5 +++++ doc/ref/api-utility.texi | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog index 3122bc3d3..d80fba484 100644 --- a/doc/ref/ChangeLog +++ b/doc/ref/ChangeLog @@ -1,3 +1,8 @@ +2006-06-16 Ludovic Courtès + + * api-utility.texi (Equality): Mentioned the behavior of `equal?' + for structures (as suggested by Kevin Ryde). + 2006-06-13 Ludovic Courtès * api-compound.texi (Structure Concepts): Mentioned the behavior diff --git a/doc/ref/api-utility.texi b/doc/ref/api-utility.texi index 9f6766c71..4a902123e 100644 --- a/doc/ref/api-utility.texi +++ b/doc/ref/api-utility.texi @@ -137,7 +137,7 @@ inexact number (even if their value is the same). Return @code{#t} if @var{x} and @var{y} are the same type, and their contents or value are equal. -For a pair, string, vector or array, @code{equal?} compares the +For a pair, string, vector, array or structure, @code{equal?} compares the contents, and does so using using the same @code{equal?} recursively, so a deep structure can be traversed.