Received: from mail.proteosys.com ([213.139.130.197]) by nummer-3.proteosys with Microsoft SMTPSVC(6.0.3790.3959); Wed, 12 Sep 2007 00:15:03 +0200 Received: by mail.proteosys.com (8.13.8/8.13.4) with ESMTP id l8BMEt9v004688 for ; Wed, 12 Sep 2007 00:14:55 +0200 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 l8BM5H58004967 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 12 Sep 2007 00:05:17 +0200 Received: from listserv.uni-heidelberg.de (listserv.uni-heidelberg.de [129.206.100.94]) by listserv.uni-heidelberg.de (8.13.1/8.13.1) with ESMTP id l8BM1Omn001495; Wed, 12 Sep 2007 00:05:16 +0200 Received: by LISTSERV.UNI-HEIDELBERG.DE (LISTSERV-TCP/IP release 15.0) with spool id 119383 for LATEX-L@LISTSERV.UNI-HEIDELBERG.DE; Wed, 12 Sep 2007 00:05:16 +0200 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 l8BM5GUn001853 for ; Wed, 12 Sep 2007 00:05:16 +0200 Received: from mx04.kabsi.at (mx04.kabsi.at [62.40.128.131]) by relay2.uni-heidelberg.de (8.13.8/8.13.8) with ESMTP id l8BM53Pm023636 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 12 Sep 2007 00:05:08 +0200 Received: from buckbeak.hogwarts (h081217001071.dyn.cm.kabsi.at [81.217.1.71]) by mx04.kabsi.at (8.13.8/8.13.8) with SMTP id l8BM519v008800 for ; Wed, 12 Sep 2007 00:05:01 +0200 Received: by buckbeak.hogwarts (Postfix, from userid 1000) id CA8AB330810; Wed, 12 Sep 2007 00:04:55 +0200 (CEST) References: <87wsv6odr8.fsf@buckbeak.hogwarts> <18141.38684.704361.46277@morse.mittelbach-online.de> <87sl5uno7u.fsf@buckbeak.hogwarts> <18141.51596.255158.574401@morse.mittelbach-online.de> <87ir6qng8e.fsf@buckbeak.hogwarts> <18142.20142.549886.908550@morse.mittelbach-online.de> <18148.25382.129327.738753@morse.mittelbach-online.de> <878x7douyv.fsf@buckbeak.hogwarts> <18151.2368.779712.110953@morse.mittelbach-online.de> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <87642gamew.fsf@buckbeak.hogwarts> Date: Wed, 12 Sep 2007 00:04:55 +0200 Reply-To: Mailing list for the LaTeX3 project Sender: Mailing list for the LaTeX3 project From: Andreas Matthias Subject: Re: l3prop -- syntax and functionality change To: LATEX-L@LISTSERV.UNI-HEIDELBERG.DE In-Reply-To: <18151.2368.779712.110953@morse.mittelbach-online.de> (Frank Mittelbach's message of "Tue\, 11 Sep 2007 23\:31\:44 +0200") Precedence: list List-Help: , List-Unsubscribe: List-Subscribe: List-Owner: List-Archive: X-ProteoSys-SPAM-Score: -2.464 () BAYES_00,FORGED_RCVD_HELO X-Scanned-By: MIMEDefang 2.57 on 213.139.130.197 Return-Path: owner-latex-l@LISTSERV.UNI-HEIDELBERG.DE X-OriginalArrivalTime: 11 Sep 2007 22:15:03.0141 (UTC) FILETIME=[33641150:01C7F4C1] Status: R X-Status: X-Keywords: X-UID: 5060 Frank Mittelbach wrote: > > * What is \prop_gput:Ooo for? Hasn't got \prop_gput:Noo the > > same functionality? (Let alone that \prop_gput:Ooo doesn't > > work, yet.) > > O in contrast to o means single expanion on an input which is a single token > ie no braces around it. > > \tlp_new:N \l_tmp_tlp ^^^^^^^^^^ ;-) I am doing this mistake frequently. But there is only a \tlp_clear_new:N. Maybe there really should exist a \tlp_new:N. > \prop_new:N \g_foo_prop > > \tlp_set:Nn \l_tmp_tlp {\g_foo_prop} > > \prop_gput:Ooo \l_tmp_tlp ... Hmm... But this could be done with \prop_gput:Noo as well. \RequirePackage{l3prop} \RequirePackage{l3tlp} \ExplSyntaxOn \tlp_new:Nn \l_tmp_tlp {} \prop_new:N \g_foo_prop \tlp_set:Nn \l_tmp_tlp {\g_foo_prop} \prop_gput:Noo \l_tmp_tlp {key}{info} \prop_map_inline:Nn \g_foo_prop {\io_put_term:x{#1:~ #2}} \stop Ciao Andreas