Change assoc-delete-all to assq-delete-all.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user