# HG changeset patch # User Lute Kamstra # Date 1114118578 0 # Node ID beeb90a3315c231fac2e5d5fb256c684b6af8f71 # Parent 6fb1dd588c246efdaa38093f201dc18fa9c58a69 (Association Lists): Document rassq-delete-all. diff -r 6fb1dd588c24 -r beeb90a3315c lispref/lists.texi --- a/lispref/lists.texi Thu Apr 21 21:18:29 2005 +0000 +++ b/lispref/lists.texi Thu Apr 21 21:22:58 2005 +0000 @@ -1667,6 +1667,15 @@ @end example @end defun +@defun rassq-delete-all value alist +This function deletes from @var{alist} all the elements whose @sc{cdr} +is @code{eq} to @var{value}. It returns the shortened alist, and +often modifies the original list structure of @var{alist}. +@code{rassq-delete-all} is like @code{assq-delete-all} except that it +compares the @sc{cdr} of each @var{alist} association instead of the +@sc{car}. +@end defun + @ignore arch-tag: 31fb8a4e-4aa8-4a74-a206-aa00451394d4 @end ignore