[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: newline in string literal?
The one danger of that is that the "newline" in that string will be
platform independent. If that is in a file loaded with `load', it
will be the platform-specific newline (eg, CRLF sometimes, etc, etc)
since `load' opens files in binary mode.
I just use (format "~n") myself.
Hope that helps.
Robby
At 9:58 PM -0400 5/9/01, Shriram Krishnamurthi wrote:
>Does
>
> "a
> b"
>
>not do the job for you?
>
>Shriram