Am Sonntag, 7. November 2004 11:43 schrieb Lars Gullik Bjønnes: > Would it be possible to use '\r' '\n' instead of 13, 10? > > magic numbers are not nice.
Of course. The only reason I used the numbers is that they were used before. We have theCatcode[int('\t')] = catSpace; theCatcode[10] = catNewline; , so I thought the use of numbers has a reason here. Georg