aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2005-04-21 21:22:58 +0000
committerLute Kamstra2005-04-21 21:22:58 +0000
commit0e6fb1e6e2fe0b345d1ecbbdf4c9b48a6b13eb13 (patch)
treee392f1b0be442524dd72a2f396413ecacab51337
parent2c7b5da17afabf02cd58a5530dcfbdb4459ed62c (diff)
downloademacs-0e6fb1e6e2fe0b345d1ecbbdf4c9b48a6b13eb13.tar.gz
emacs-0e6fb1e6e2fe0b345d1ecbbdf4c9b48a6b13eb13.zip
(Association Lists): Document rassq-delete-all.
-rw-r--r--lispref/lists.texi9
1 files changed, 9 insertions, 0 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi
index 47ea5b7d541..ab7d496e461 100644
--- a/lispref/lists.texi
+++ b/lispref/lists.texi
@@ -1667,6 +1667,15 @@ alist
1667@end example 1667@end example
1668@end defun 1668@end defun
1669 1669
1670@defun rassq-delete-all value alist
1671This function deletes from @var{alist} all the elements whose @sc{cdr}
1672is @code{eq} to @var{value}. It returns the shortened alist, and
1673often modifies the original list structure of @var{alist}.
1674@code{rassq-delete-all} is like @code{assq-delete-all} except that it
1675compares the @sc{cdr} of each @var{alist} association instead of the
1676@sc{car}.
1677@end defun
1678
1670@ignore 1679@ignore
1671 arch-tag: 31fb8a4e-4aa8-4a74-a206-aa00451394d4 1680 arch-tag: 31fb8a4e-4aa8-4a74-a206-aa00451394d4
1672@end ignore 1681@end ignore