Mercurial > hg > xemacs-beta
diff man/lispref/lists.texi @ 440:8de8e3f6228a r21-2-28
Import from CVS: tag r21-2-28
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:33:38 +0200 |
parents | 3ecd8885ac67 |
children | 576fb035e263 |
line wrap: on
line diff
--- a/man/lispref/lists.texi Mon Aug 13 11:32:27 2007 +0200 +++ b/man/lispref/lists.texi Mon Aug 13 11:33:38 2007 +0200 @@ -1448,7 +1448,7 @@ @defun remassoc key alist This function deletes by side effect any associations with key @var{key} -in @var{alist} -- i.e. it removes any elements from @var{alist} whose +in @var{alist}---i.e. it removes any elements from @var{alist} whose @code{car} is @code{equal} to @var{key}. The modified @var{alist} is returned. @@ -1460,7 +1460,7 @@ @defun remassq key alist This function deletes by side effect any associations with key @var{key} -in @var{alist} -- i.e. it removes any elements from @var{alist} whose +in @var{alist}---i.e. it removes any elements from @var{alist} whose @code{car} is @code{eq} to @var{key}. The modified @var{alist} is returned. @@ -1471,7 +1471,7 @@ @defun remrassoc value alist This function deletes by side effect any associations with value @var{value} -in @var{alist} -- i.e. it removes any elements from @var{alist} whose +in @var{alist}---i.e. it removes any elements from @var{alist} whose @code{cdr} is @code{equal} to @var{value}. The modified @var{alist} is returned. @@ -1488,7 +1488,7 @@ @defun remrassq value alist This function deletes by side effect any associations with value @var{value} -in @var{alist} -- i.e. it removes any elements from @var{alist} whose +in @var{alist}---i.e. it removes any elements from @var{alist} whose @code{cdr} is @code{eq} to @var{value}. The modified @var{alist} is returned. @@ -1771,7 +1771,7 @@ done with the elements, they will automatically disappear from the list. Weak lists are used internally, for example, to manage the list holding -the children of an extent -- an extent that is unused but has a parent +the children of an extent---an extent that is unused but has a parent will still be reclaimed, and will automatically be removed from its parent's list of children.