changeset 71704:3851fc0b6ee0

(List Elements, Building Lists, Association Lists): Remove @tindex.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 08 Jul 2006 18:07:01 +0000
parents 121454a86a65
children 0f38ae487139
files lispref/lists.texi
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/lists.texi	Sat Jul 08 18:06:33 2006 +0000
+++ b/lispref/lists.texi	Sat Jul 08 18:07:01 2006 +0000
@@ -245,7 +245,6 @@
 @end example
 @end defun
 
-@tindex pop
 @defmac pop listname
 This macro is a way of examining the @sc{car} of a list,
 and taking it off the list, all at once.
@@ -432,7 +431,6 @@
 any symbol can serve both purposes.
 @end defun
 
-@tindex push
 @defmac push newelt listname
 This macro provides an alternative way to write
 @code{(setq @var{listname} (cons @var{newelt} @var{listname}))}.
@@ -1649,7 +1647,6 @@
 @end defun
 
 @defun assq-delete-all key alist
-@tindex assq-delete-all
 This function deletes from @var{alist} all the elements whose @sc{car}
 is @code{eq} to @var{key}, much as if you used @code{delq} to delete
 each such element one by one.  It returns the shortened alist, and