changeset 36900:a59daf60cef1

Change assoc-delete-all to assq-delete-all.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 20 Mar 2001 15:37:50 +0000
parents 1393f641034e
children 0c5978b5eb3a
files lispref/anti.texi lispref/lists.texi
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/anti.texi	Tue Mar 20 15:15:21 2001 +0000
+++ b/lispref/anti.texi	Tue Mar 20 15:37:50 2001 +0000
@@ -176,7 +176,7 @@
 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
--- a/lispref/lists.texi	Tue Mar 20 15:15:21 2001 +0000
+++ b/lispref/lists.texi	Tue Mar 20 15:37:50 2001 +0000
@@ -1625,8 +1625,8 @@
 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