# HG changeset patch # User Gerd Moellmann # Date 985102670 0 # Node ID a59daf60cef179985af1c02f54cccec57c477eb0 # Parent 1393f641034e82735fa95ae5a1a487fc32e331de Change assoc-delete-all to assq-delete-all. diff -r 1393f641034e -r a59daf60cef1 lispref/anti.texi --- 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 diff -r 1393f641034e -r a59daf60cef1 lispref/lists.texi --- 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