# HG changeset patch # User Eli Zaretskii # Date 1152382021 0 # Node ID 3851fc0b6ee085d9390cc42b3426f5607447948c # Parent 121454a86a65b3ac1219ab6c32c9a55d7156bda1 (List Elements, Building Lists, Association Lists): Remove @tindex. diff -r 121454a86a65 -r 3851fc0b6ee0 lispref/lists.texi --- 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