Received: from mail.proteosys.com ([213.139.130.197]) by nummer-3.proteosys with Microsoft SMTPSVC(6.0.3790.3959); Mon, 8 Dec 2008 14:58:10 +0100 Received: by mail.proteosys.com (8.13.8/8.13.8) with ESMTP id mB8Dw8WN004773 for ; Mon, 8 Dec 2008 14:58:09 +0100 Received: from listserv.uni-heidelberg.de (listserv.uni-heidelberg.de [129.206.100.94]) by relay2.uni-heidelberg.de (8.13.8/8.13.8) with ESMTP id mB8DrjHJ002907 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 8 Dec 2008 14:53:45 +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 mB7N2C4G022853; Mon, 8 Dec 2008 14:53:27 +0100 Received: by LISTSERV.UNI-HEIDELBERG.DE (LISTSERV-TCP/IP release 15.5) with spool id 173681 for LATEX-L@LISTSERV.UNI-HEIDELBERG.DE; Mon, 8 Dec 2008 14:53:27 +0100 Received: from relay.uni-heidelberg.de (relay.uni-heidelberg.de [129.206.100.212]) by listserv.uni-heidelberg.de (8.13.1/8.13.1) with ESMTP id mB8DrQw2007994 for ; Mon, 8 Dec 2008 14:53:26 +0100 Received: from rv-out-0708.google.com (rv-out-0708.google.com [209.85.198.245]) by relay.uni-heidelberg.de (8.14.1/8.14.1) with ESMTP id mB8DrLop032459 for ; Mon, 8 Dec 2008 14:53:25 +0100 Received: by rv-out-0708.google.com with SMTP id c5so1246174rvf.10 for ; Mon, 08 Dec 2008 05:53:21 -0800 (PST) Received: by 10.140.226.14 with SMTP id y14mr1674714rvg.59.1228744401022; Mon, 08 Dec 2008 05:53:21 -0800 (PST) Received: from ?10.0.1.102? (219-90-182-110.ip.adam.com.au [219.90.182.110]) by mx.google.com with ESMTPS id b8sm26518373rvf.3.2008.12.08.05.53.19 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 08 Dec 2008 05:53:20 -0800 (PST) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) References: <4936E30A.5080209@morningstar2.co.uk> <87ljuxlybp.fsf@fawkes.hogwarts> <49370743.7050004@morningstar2.co.uk> <18745.37877.845526.230207@morse.mittelbach-online.de> <18747.60665.106015.681211@morse.mittelbach-online.de> <944107A6-E45B-4F33-8F7B-AF98DC95AB54@gmail.com> <18748.52807.627728.138832@morse.mittelbach-online.de> X-Mailer: Apple Mail (2.929.2) X-Spam-Whitelist: Message-ID: Date: Tue, 9 Dec 2008 00:23:16 +1030 Reply-To: Mailing list for the LaTeX3 project Sender: Mailing list for the LaTeX3 project From: Will Robertson Subject: Re: expl3 "token list" terminology To: LATEX-L@LISTSERV.UNI-HEIDELBERG.DE In-Reply-To: <18748.52807.627728.138832@morse.mittelbach-online.de> Precedence: list List-Help: , List-Unsubscribe: List-Subscribe: List-Owner: List-Archive: X-ProteoSys-SPAM-Score: -2.599 () BAYES_00 X-Scanned-By: MIMEDefang 2.64 on 213.139.130.197 Return-Path: owner-latex-l@LISTSERV.UNI-HEIDELBERG.DE X-OriginalArrivalTime: 08 Dec 2008 13:58:10.0876 (UTC) FILETIME=[016FEFC0:01C9593D] Status: R X-Status: X-Keywords: X-UID: 5530 On 08/12/2008, at 6:05 PM, Frank Mittelbach wrote: > that's the problem. It is something like \tlstream or \tstream > (operating on > an input stream of token (list)), but I'm not sure this makes it > better (only > longer) Could this be generalised for other functions that deal with streams of comma-lists, and so on? I guess not, since only token streams are really that necessary to deal with "on the fly", so to speak. What about just \tokens_ ? (Oh, but there's already the "token" module. And "tokens" is a little too similar to "toks"? Maybe, maybe not.) > Another point to consider is that _tlp is the predominant storage > bin used > all over the place, so something snappy might be preferable over > something > longer (such as _tlist) I don't see a problem with just _tl, then. * * * While we're discussing terminology, is there any overarching reason that global and local variables have their scope as a prefix \g_ or \l_ ? (My reason for asking being that I would slightly prefer something like \module_name_l_tlp or something thereabouts, but I'm not really fussed.) Actually, I can already see why you want the scope first up -- it makes it easier in l3chk to verify that you're operating on the variable with the correctly-scoped function. It also enforces more concretely that the scope of the variable is directly included in its name. Will