erik hansen wrote: > --- Richard Gaskin <[EMAIL PROTECTED]> > wrote: > > replace "ARBITRARY_DELETE_FLAG"&cr \ > with empty in tList > > --- > > isn't a return a carriage return and... > a form feed?
Internally, "cr" and "return" both signify the Unix line ending (ASCII 10, or linefeed). Macs use ASCII 13, which is the true "return" character, and Windows uses return+linefeed (ASCII 13 + ASCII 10). When reading or writing a file as text, the enginew does line-ending translation automatically. But within the program, line endings use the Unix convention. -- Richard Gaskin Fourth World Media Corporation Developer of WebMerge 2.2: Publish any database on any site ___________________________________________________________ [EMAIL PROTECTED] http://www.FourthWorld.com Tel: 323-225-3717 AIM: FourthWorldInc _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
