Received: from mx0.gmx.net (mx0.gmx.net [213.165.64.100]) by h1439878.stratoserver.net (8.14.2/8.14.2/Debian-2build1) with SMTP id p0PGj81x009720 for ; Tue, 25 Jan 2011 17:45:10 +0100 Received: (qmail 13826 invoked by alias); 25 Jan 2011 16:45:03 -0000 Delivered-To: GMX delivery to rainer.schoepf@gmx.net Received: (qmail invoked by alias); 25 Jan 2011 16:45:02 -0000 Received: from relay.uni-heidelberg.de (EHLO relay.uni-heidelberg.de) [129.206.100.212] by mx0.gmx.net (mx082) with SMTP; 25 Jan 2011 17:45:02 +0100 Received: from listserv.uni-heidelberg.de (listserv.uni-heidelberg.de [129.206.100.94]) by relay.uni-heidelberg.de (8.14.1/8.14.1) with ESMTP id p0PGfCGS027762 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 25 Jan 2011 17:41:12 +0100 Received: from listserv.uni-heidelberg.de (localhost.localdomain [127.0.0.1]) by listserv.uni-heidelberg.de (8.13.1/8.13.1) with ESMTP id p0PFmkXX018370; Tue, 25 Jan 2011 17:41:02 +0100 Received: by LISTSERV.UNI-HEIDELBERG.DE (LISTSERV-TCP/IP release 16.0) with spool id 910053 for LATEX-L@LISTSERV.UNI-HEIDELBERG.DE; Tue, 25 Jan 2011 17:41:02 +0100 Received: from relay2.uni-heidelberg.de (relay2.uni-heidelberg.de [129.206.210.211]) by listserv.uni-heidelberg.de (8.13.1/8.13.1) with ESMTP id p0PGf1J0001048 for ; Tue, 25 Jan 2011 17:41:01 +0100 Received: from mail-mx2.its.albany.edu (mail-mx2.its.albany.edu [169.226.1.164]) by relay2.uni-heidelberg.de (8.13.8/8.13.8) with ESMTP id p0PGenis010045 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 25 Jan 2011 17:40:53 +0100 Received: from hilbert.math.albany.edu (hilbert.math.albany.edu [169.226.140.28]) by mail-mx2.its.albany.edu (8.14.3/8.14.3) with ESMTP id p0PGemsm022541 for ; Tue, 25 Jan 2011 11:40:48 -0500 (EST) Received: (from hammond@localhost) by hilbert.math.albany.edu (8.13.8/8.13.8/Submit) id p0PGemcT012947; Tue, 25 Jan 2011 11:40:48 -0500 (EST) References: <3986.1295947424@cl.cam.ac.uk> User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.4 (usg-unix-v) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.65 on 169.226.1.164 Message-ID: Date: Tue, 25 Jan 2011 11:40:48 -0500 Reply-To: Mailing list for the LaTeX3 project Sender: Mailing list for the LaTeX3 project From: William F Hammond Subject: Re: \clist_length:N and \clist_nth:N To: LATEX-L@listserv.uni-heidelberg.de In-Reply-To: <3986.1295947424@cl.cam.ac.uk> (Robin Fairbairns's message of "Tue, 25 Jan 2011 09:23:44 +0000") Precedence: list List-Help: , List-Unsubscribe: List-Subscribe: List-Owner: List-Archive: X-GMX-Antispam: 0 (Mail was not recognized as spam); Detail=5D7Q89H36p6i75npGen84eVAEFK/syJmiNoEBJhgjYKpglu1TZLLw7xMZnJMXwBFy+Sxe D/AUQGQOurK3ezVJqUBFH0uN5pjmWoMfpyHp50EZ60/Y6hM43eiKLTaE/W0dI7nIn8+pr4SzneyH Jeytg==V1; X-Resent-By: Forwarder X-Resent-For: rainer.schoepf@gmx.net X-Resent-To: rainer@rainer-schoepf.de Status: R X-Status: X-Keywords: X-UID: 6573 Robin Fairbairns writes: > the "lisp heritage" is no more than simple use of some lisp names > for some latex internal operations (e.g., car, cdr). it's a long > time (>40 years) since i learned lisp, but i don't remember a > special name for items in a lisp list. . . . i think element is > as good as it gets, in this context. In Gnu Emacs Lisp its name is "elt". Cheers. -- Bill ---------------------------------------------------------------------- P.S. To refresh after 40 years: Go to the "scratch" buffer in Gnu Emacs and enter (setq myseq '("a" "b" "c" "d" "e")) then press C-j to see: ("a" "b" "c" "d" "e") Then (elt myseq 3) which returns: "d" With the cursor over "elt" above enter C-h f to see the help for "elt": elt is a built-in function in `C source code'. (elt SEQUENCE N) Return element of SEQUENCE at index N. ----------------------------------------------------------------------