From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/22633 Path: news.gmane.org!not-for-mail From: Christopher Creutzig Newsgroups: gmane.comp.tex.context Subject: Re: t-rsteps and starttyping Date: Wed, 21 Sep 2005 14:38:00 +0200 Message-ID: <43315428.90603@creutzig.de> References: <1119909965.13762.21.camel@localhost.localdomain> <1126562259.1418.41.camel@tempete> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1127309908 17519 80.91.229.2 (21 Sep 2005 13:38:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 21 Sep 2005 13:38:28 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Sep 21 15:38:26 2005 Return-path: Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1EI4jk-000602-PR for gctc-ntg-context-518@m.gmane.org; Wed, 21 Sep 2005 15:34:12 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 24F30127DB; Wed, 21 Sep 2005 15:34:12 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 04664-01-4; Wed, 21 Sep 2005 15:34:10 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 8121D127C1; Wed, 21 Sep 2005 14:38:11 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 78CD1127C1 for ; Wed, 21 Sep 2005 14:38:10 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 04019-04 for ; Wed, 21 Sep 2005 14:38:09 +0200 (CEST) Original-Received: from mailgate.uni-paderborn.de (mailgate.uni-paderborn.de [131.234.22.32]) by ronja.ntg.nl (Postfix) with ESMTP id 9882D127A5 for ; Wed, 21 Sep 2005 14:38:09 +0200 (CEST) Original-Received: from p548b4624.dip0.t-ipconnect.de ([84.139.70.36] helo=[192.168.1.2]) by mailgate.uni-paderborn.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.43) id 1EI3sL-0002xD-TU for ntg-context@ntg.nl; Wed, 21 Sep 2005 14:39:02 +0200 User-Agent: Mozilla Thunderbird 1.0.6 (Macintosh/20050716) X-Accept-Language: en-us, en Original-To: mailing list for ConTeXt users In-Reply-To: <1126562259.1418.41.camel@tempete> X-Enigmail-Version: 0.92.0.0 X-UNI-PB_FAK-EIM-MailScanner-Information: Please see http://imap.uni-paderborn.de for details X-UNI-PB_FAK-EIM-MailScanner: Found to be clean X-UNI-PB_FAK-EIM-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.208, required 4, AUTH_EIM_USER -5.00, RCVD_IN_NJABL_DUL 1.66, RCVD_IN_SORBS_DUL 0.14) X-MailScanner-From: christopher@creutzig.de X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.5 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Spam-Checker-Version: SpamAssassin 3.0.3 (2005-04-27) on smtp.ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:22633 Archived-At: David Munger wrote: > \long\def\StartLong#1\StopLong{#1} > > \starttext > \StartLong > \starttyping > hallo > \stoptyping > \StopLong > \stoptext > > This will produce no error, but no output as well. Maybe we could use > some alternate mechanism to define the \StartLong...\StopLong pair. \def\StartLong{} \def\StopLong{} Or, if you insist on having the argument, \long\def\StartLong#1\StopLong{\scantokens{#1}} should work. Christopher