From: Gerd Moellmann Date: Tue, 20 Mar 2001 15:37:50 +0000 (+0000) Subject: Change assoc-delete-all to assq-delete-all. X-Git-Tag: emacs-pretest-21.0.101~237 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe;p=emacs.git Change assoc-delete-all to assq-delete-all. --- 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