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 oABBcLsK018390 for ; Thu, 11 Nov 2010 12:38:23 +0100 Received: (qmail 19069 invoked by alias); 11 Nov 2010 11:38:16 -0000 Delivered-To: GMX delivery to rainer.schoepf@gmx.net Received: (qmail invoked by alias); 11 Nov 2010 11:38:15 -0000 Received: from relay2.uni-heidelberg.de (EHLO relay2.uni-heidelberg.de) [129.206.210.211] by mx0.gmx.net (mx065) with SMTP; 11 Nov 2010 12:38:15 +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 oABBZOV6024264 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 11 Nov 2010 12:35:24 +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 oABBCCxa025351; Thu, 11 Nov 2010 12:35:57 +0100 Received: by LISTSERV.UNI-HEIDELBERG.DE (LISTSERV-TCP/IP release 16.0) with spool id 763344 for LATEX-L@LISTSERV.UNI-HEIDELBERG.DE; Thu, 11 Nov 2010 12:35:56 +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 oABBZuAx015987 for ; Thu, 11 Nov 2010 12:35:56 +0100 Received: from ueamailgate01.uea.ac.uk (ueamailgate01.uea.ac.uk [139.222.131.184]) by relay.uni-heidelberg.de (8.14.1/8.14.1) with ESMTP id oABBZDL3023992 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 11 Nov 2010 12:35:17 +0100 Received: from ueams01.uea.ac.uk (ueams01.uea.ac.uk [139.222.131.78]) by ueamailgate01.uea.ac.uk (8.13.8/8.13.8) with ESMTP id oABBZpcf020996; Thu, 11 Nov 2010 11:35:51 GMT Received: from [139.222.114.143] by ueams01.uea.ac.uk with esmtp (Exim 4.69) (envelope-from ) id 1PGVRU-0000ad-1L; Thu, 11 Nov 2010 11:35:48 +0000 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-GB; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6 MIME-Version: 1.0 References: <4CDBB5F9.9010507@morningstar2.co.uk> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Bayes-Prob: 0.0001 (Score 0, tokens from: @@RPTN, outgoing) X-Spam-Score: 0.00 () [Hold at 10.00] SPF(none,0) X-CanIt-Geo: ip=139.222.131.78; country=GB; region=I9; city=Norwich; latitude=52.6333; longitude=1.3000; http://maps.google.com/maps?q=52.6333,1.3000&z=6 X-CanItPRO-Stream: UEA:outgoing (inherits from UEA:default,base:default) X-Canit-Stats-ID: 62782562 - 23ea5a8bce51 - 20101111 X-Scanned-By: CanIt (www . roaringpenguin . com) on 139.222.131.184 X-Spam-Check-Skipped: Loadavg 16.87 Message-ID: <4CDBD518.1050503@morningstar2.co.uk> Date: Thu, 11 Nov 2010 11:35:52 +0000 Reply-To: Mailing list for the LaTeX3 project Sender: Mailing list for the LaTeX3 project From: Joseph Wright Subject: Re: Rewriting polyglossia in LaTeX3 To: LATEX-L@listserv.uni-heidelberg.de In-Reply-To: <4CDBB5F9.9010507@morningstar2.co.uk> Precedence: list List-Help: , List-Unsubscribe: List-Subscribe: List-Owner: List-Archive: X-GMX-Antispam: 0 (Mail was not recognized as spam); Detail=5D7Q89H36p4U4jfdfC5HDevlx1X2sAZgAaLl3DbFfW0PXxL7WgvovMFXXSEPrACW/b9IW Qp+GhEViZlUW4mdBntgP1X8KwB5tjHCA/yxSZMu7BXBiPs3ujyaoi2xLHDqpg8dk65Dhpb3Lg0c1 iTjGg==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: 6473 On 11/11/2010 09:23, Joseph Wright wrote: > On 11/11/2010 09:01, Rémy Oudompheng wrote: >> I am encountering a problem with l3keys : the following code >> >> \documentclass{article} >> \usepackage{expl3} >> \begin{document} >> \ExplSyntaxOn >> \keys_define:nn { othermodule } { >> a .code:n = Hello, >> } >> \keys_define:nn { module } { >> a .code:n = Hello, >> b .code:n = \keys_set:nn{othermodule}{a}, >> c .code:n = B, >> } >> \keys_set:nn { module }{b,c} >> \ExplSyntaxOff >> \end{document} >> >> fails with the error >> The key 'othermodule/c' is unknown and is being ignored. >> >> So I guess \keys_set:nn are not meant to be nested. Is there an easy >> way to work around this (other than replacing \keys_set:nn{...}{...} >> by "Hello") ? >> > > Hello Rémy, > > That would be a bug, and would be my fault I guess. Give me a couple of > days and I should sort this out: I'll need to do some thinking. Right, I have this fixed now. I want to do a bit on the testing side, then expect to send an update to CTAN later today. -- Joseph Wright