summaryrefslogtreecommitdiff
path: root/lispref/lists.texi
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-03-20 15:37:50 +0000
committerGerd Moellmann <gerd@gnu.org>2001-03-20 15:37:50 +0000
commit2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe (patch)
treec3aab034b4b221d922be2ddf8334082925535b00 /lispref/lists.texi
parent7b8bbf72be98d902817aa18ae4654ff666705101 (diff)
Change assoc-delete-all to assq-delete-all.
Diffstat (limited to 'lispref/lists.texi')
-rw-r--r--lispref/lists.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi
index 1f0199096f..b0a3a1f6b8 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