diff --git a/lispref/anti.texi b/lispref/anti.texi index e54363ee316..63035a0d23a 100644 --- a/lispref/anti.texi +++ b/lispref/anti.texi @@ -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 diff --git a/lispref/lists.texi b/lispref/lists.texi index 1f0199096f4..b0a3a1f6b85 100644 --- a/lispref/lists.texi +++ b/lispref/lists.texi @@ -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