]> git.eshelyaron.com Git - emacs.git/commitdiff
Change assoc-delete-all to assq-delete-all.
authorGerd Moellmann <gerd@gnu.org>
Tue, 20 Mar 2001 15:37:50 +0000 (15:37 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 20 Mar 2001 15:37:50 +0000 (15:37 +0000)
lispref/anti.texi
lispref/lists.texi

index e54363ee3165ac8006dfb3dd3533f24a4e76ba3b..63035a0d23a85eafe72a1ef4077c4446e290948a 100644 (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
index 1f0199096f4584d231b8e31a9d80412609760fea..b0a3a1f6b851b334838b01cdc33a94e313471e5b 100644 (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