aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-20 15:37:50 +0000
committerGerd Moellmann2001-03-20 15:37:50 +0000
commit2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe (patch)
treec3aab034b4b221d922be2ddf8334082925535b00
parent7b8bbf72be98d902817aa18ae4654ff666705101 (diff)
downloademacs-2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe.tar.gz
emacs-2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe.zip
Change assoc-delete-all to assq-delete-all.
-rw-r--r--lispref/anti.texi2
-rw-r--r--lispref/lists.texi4
2 files changed, 3 insertions, 3 deletions
diff --git a/lispref/anti.texi b/lispref/anti.texi
index e54363ee316..63035a0d23a 100644
--- a/lispref/anti.texi
+++ b/lispref/anti.texi
@@ -176,7 +176,7 @@ The function @code{buffer-size} always reports on the
176current buffer. 176current buffer.
177 177
178@item 178@item
179The function @code{assoc-delete-all} has itself been deleted. 179The function @code{assq-delete-all} has itself been deleted.
180So there! 180So there!
181 181
182@item 182@item
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