From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/78117 Path: news.gmane.org!not-for-mail From: Aditya Mahajan Newsgroups: gmane.comp.tex.context Subject: Re: Lua conditionals fail inside \starttexdefinition Date: Tue, 4 Sep 2012 14:24:33 -0400 (EDT) Message-ID: References: <20120904142109.32f088b2@homerow> <827CE8D8-8E41-4267-B70C-FCACF6A0C2FC@gmail.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="8323328-608365645-1346783075=:21943" X-Trace: ger.gmane.org 1346783089 12698 80.91.229.3 (4 Sep 2012 18:24:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 4 Sep 2012 18:24:49 +0000 (UTC) To: mailing list for ConTeXt users Original-X-From: ntg-context-bounces@ntg.nl Tue Sep 04 20:24:48 2012 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from balder.ntg.nl ([195.12.62.10]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1T8xnr-0003k8-Ud for gctc-ntg-context-518@m.gmane.org; Tue, 04 Sep 2012 20:24:48 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by balder.ntg.nl (Postfix) with ESMTP id EF08010207; Tue, 4 Sep 2012 20:24:44 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at balder.ntg.nl Original-Received: from balder.ntg.nl ([127.0.0.1]) by localhost (balder.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sDZu863qYPii; Tue, 4 Sep 2012 20:24:42 +0200 (CEST) Original-Received: from balder.ntg.nl (localhost [IPv6:::1]) by balder.ntg.nl (Postfix) with ESMTP id 1EA16101F2; Tue, 4 Sep 2012 20:24:42 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by balder.ntg.nl (Postfix) with ESMTP id 364BE101F2 for ; Tue, 4 Sep 2012 20:24:41 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at balder.ntg.nl Original-Received: from balder.ntg.nl ([127.0.0.1]) by localhost (balder.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id CBPYw5lR1JAQ for ; Tue, 4 Sep 2012 20:24:40 +0200 (CEST) Original-Received: from filter2-utr.mf.surf.net (filter2-utr.mf.surf.net [195.169.124.153]) by balder.ntg.nl (Postfix) with ESMTP id 22E8D101EB for ; Tue, 4 Sep 2012 20:24:39 +0200 (CEST) Original-Received: from hackers.mr.itd.umich.edu (smtp.mail.umich.edu [141.211.14.81]) by filter2-utr.mf.surf.net (8.14.3/8.14.3/Debian-9.4) with ESMTP id q84IObff009588 for ; Tue, 4 Sep 2012 20:24:38 +0200 Original-Received: FROM adi-netbook (bas3-montreal02-1096679445.dsl.bell.ca [65.94.0.21]) By hackers.mr.itd.umich.edu ID 50464763.4F763.20252 ; Authuser adityam; 4 Sep 2012 14:24:35 EDT In-Reply-To: <827CE8D8-8E41-4267-B70C-FCACF6A0C2FC@gmail.com> User-Agent: Alpine 2.02 (LNX 1266 2009-07-14) X-Bayes-Prob: 0.0001 (Score 0, tokens from: @@RPTN) X-CanIt-Geo: ip=141.211.14.81; country=US; region=MI; city=Ann Arbor; postalcode=48109; latitude=42.2923; longitude=-83.7145; metrocode=505; areacode=734; http://maps.google.com/maps?q=42.2923,-83.7145&z=6 X-CanItPRO-Stream: uu:ntg-context@ntg.nl (inherits from uu:default, base:default) X-Canit-Stats-ID: 04HT6oBQ1 - 6d6271b5eb6b - 20120904 (trained as not-spam) X-Scanned-By: CanIt (www . roaringpenguin . com) on 195.169.124.153 X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.14 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ntg-context-bounces@ntg.nl Original-Sender: ntg-context-bounces@ntg.nl Xref: news.gmane.org gmane.comp.tex.context:78117 Archived-At: This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --8323328-608365645-1346783075=:21943 Content-Type: TEXT/PLAIN; charset=windows-1252; format=flowed Content-Transfer-Encoding: QUOTED-PRINTABLE On Tue, 4 Sep 2012, Wolfgang Schuster wrote: > > Am 04.09.2012 um 14:21 schrieb Marco Patzer : > >> Hi, >> >> I discovered strange behaviour concerning Lua conditionals within >> texdefinitions. >> >> ConTeXt complains: 'then' expected near 'thenelseend'. >> >> I guess it has something to do with how the content of a >> texdefinitions is grabbed. Seems like a bug or is this by design? > > When you use the texdefinition environment to create a command > the end of line character which results normally in a space is ignored > sees =93thenelseend=94 as a single string, in such a case you can add > a space and put a comment sign at the end of the line. > >> % This one fails >> % \starttexdefinition mycmd >> % \startluacode >> % if true then >> % else >> % end >> % \stopluacode >> % \stoptexdefinition > > \starttexdefintion mycmd > \startluacode > if true then % > else % > end > \stopluacode > \stoptexdefinition Why does adding semicolon not work? Aditya --8323328-608365645-1346783075=:21943 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki! maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://tex.aanhet.net archive : http://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________ --8323328-608365645-1346783075=:21943--