diff options
| author | Gerd Moellmann | 2001-03-20 15:37:50 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-03-20 15:37:50 +0000 |
| commit | 2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe (patch) | |
| tree | c3aab034b4b221d922be2ddf8334082925535b00 /lispref | |
| parent | 7b8bbf72be98d902817aa18ae4654ff666705101 (diff) | |
| download | emacs-2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe.tar.gz emacs-2153fe6e9dbd5a46fcfb9edf4e9aade3e0eb47fe.zip | |
Change assoc-delete-all to assq-delete-all.
Diffstat (limited to 'lispref')
| -rw-r--r-- | lispref/anti.texi | 2 | ||||
| -rw-r--r-- | lispref/lists.texi | 4 |
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 | |||
| 176 | current buffer. | 176 | current buffer. |
| 177 | 177 | ||
| 178 | @item | 178 | @item |
| 179 | The function @code{assoc-delete-all} has itself been deleted. | 179 | The function @code{assq-delete-all} has itself been deleted. |
| 180 | So there! | 180 | So 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} | |||
| 1625 | is @code{eq} to @var{key}. It returns the modified alist. | 1625 | is @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 |