diff options
| -rw-r--r-- | lispref/lists.texi | 9 |
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 | ||
| 1671 | This function deletes from @var{alist} all the elements whose @sc{cdr} | ||
| 1672 | is @code{eq} to @var{value}. It returns the shortened alist, and | ||
| 1673 | often modifies the original list structure of @var{alist}. | ||
| 1674 | @code{rassq-delete-all} is like @code{assq-delete-all} except that it | ||
| 1675 | compares 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 |