aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/lists.texi
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-20 15:37:50 +0000
committerGerd Moellmann2001-03-20 15:37:50 +0000
commit2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe (patch)
treec3aab034b4b221d922be2ddf8334082925535b00 /lispref/lists.texi
parent7b8bbf72be98d902817aa18ae4654ff666705101 (diff)
downloademacs-2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe.tar.gz
emacs-2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe.zip
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 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}
1625is @code{eq} to @var{key}. It returns the modified alist. 1625is @code{eq} to @var{key}. It returns the modified alist.
1626 1626
1627@example 1627@example
1628(assoc-delete-all 'foo 1628(assq-delete-all 'foo
1629 '((foo 1) (bar 2) (foo 3) (lose 4))) 1629 '((foo 1) (bar 2) (foo 3) (lose 4)))
1630 @result{} ((bar 2) (lose 4)) 1630 @result{} ((bar 2) (lose 4))
1631@end example 1631@end example
1632@end defun 1632@end defun