diff options
| author | Eli Zaretskii | 2006-07-08 18:07:01 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-07-08 18:07:01 +0000 |
| commit | 8fab6dedbf0d2bd0f97ed8a4abeb717fac384b14 (patch) | |
| tree | 08fd619002592524b3b94b4cfa2a146832bde8fa | |
| parent | 47a2831602aa5aaef36afab36612f10d1eb236c1 (diff) | |
| download | emacs-8fab6dedbf0d2bd0f97ed8a4abeb717fac384b14.tar.gz emacs-8fab6dedbf0d2bd0f97ed8a4abeb717fac384b14.zip | |
(List Elements, Building Lists, Association Lists): Remove @tindex.
| -rw-r--r-- | lispref/lists.texi | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi index 5cefce9da7c..7de4a6c6ab0 100644 --- a/lispref/lists.texi +++ b/lispref/lists.texi | |||
| @@ -245,7 +245,6 @@ This is in contrast to @code{cdr}, which signals an error if | |||
| 245 | @end example | 245 | @end example |
| 246 | @end defun | 246 | @end defun |
| 247 | 247 | ||
| 248 | @tindex pop | ||
| 249 | @defmac pop listname | 248 | @defmac pop listname |
| 250 | This macro is a way of examining the @sc{car} of a list, | 249 | This macro is a way of examining the @sc{car} of a list, |
| 251 | and taking it off the list, all at once. | 250 | and taking it off the list, all at once. |
| @@ -432,7 +431,6 @@ used in this example and the function named @code{list} described below; | |||
| 432 | any symbol can serve both purposes. | 431 | any symbol can serve both purposes. |
| 433 | @end defun | 432 | @end defun |
| 434 | 433 | ||
| 435 | @tindex push | ||
| 436 | @defmac push newelt listname | 434 | @defmac push newelt listname |
| 437 | This macro provides an alternative way to write | 435 | This macro provides an alternative way to write |
| 438 | @code{(setq @var{listname} (cons @var{newelt} @var{listname}))}. | 436 | @code{(setq @var{listname} (cons @var{newelt} @var{listname}))}. |
| @@ -1649,7 +1647,6 @@ the associations of one copy without affecting the other: | |||
| 1649 | @end defun | 1647 | @end defun |
| 1650 | 1648 | ||
| 1651 | @defun assq-delete-all key alist | 1649 | @defun assq-delete-all key alist |
| 1652 | @tindex assq-delete-all | ||
| 1653 | This function deletes from @var{alist} all the elements whose @sc{car} | 1650 | This function deletes from @var{alist} all the elements whose @sc{car} |
| 1654 | is @code{eq} to @var{key}, much as if you used @code{delq} to delete | 1651 | is @code{eq} to @var{key}, much as if you used @code{delq} to delete |
| 1655 | each such element one by one. It returns the shortened alist, and | 1652 | each such element one by one. It returns the shortened alist, and |