Change assoc-delete-all to assq-delete-all.

This commit is contained in:
Gerd Moellmann 2001-03-20 15:37:50 +00:00
parent 7b8bbf72be
commit 2153fe6e9d
2 changed files with 3 additions and 3 deletions

View file

@ -176,7 +176,7 @@ The function @code{buffer-size} always reports on the
current buffer.
@item
The function @code{assoc-delete-all} has itself been deleted.
The function @code{assq-delete-all} has itself been deleted.
So there!
@item

View file

@ -1625,8 +1625,8 @@ This function deletes from @var{alist} all the elements whose @sc{car}
is @code{eq} to @var{key}. It returns the modified alist.
@example
(assoc-delete-all 'foo
'((foo 1) (bar 2) (foo 3) (lose 4)))
(assq-delete-all 'foo
'((foo 1) (bar 2) (foo 3) (lose 4)))
@result{} ((bar 2) (lose 4))
@end example
@end defun