21 Sep
2005
21 Sep
'05
2 p.m.
Le Mercredi 21 septembre 2005 à 14:38 +0200, Christopher Creutzig a écrit :
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,
I do need the argument. Its use is repeated in the real macro.
\long\def\StartLong#1\StopLong{\scantokens{#1}}
This produces no output as well. texexec says: No pages of output. Thanks anyway. David