21 Sep
2005
21 Sep
'05
12:38 p.m.
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