This is a stupid newbie question:
I'm running ACL/Win version 3.0. I want to send a CR (carraige-return
ascii code 13) to a socket. How do I create a character in lisp that
corresponds to carraige return?
I tried the following:
(format hifsock "~A" #\return)
and
(format hifsock "~A" #\newline)
and they both emit ascii code 10 for linefeed, In fact,
#\return
or
#\newline
both return
#\Newline
I also tried
(code-char 13)
which returns NIL
I realize that CtLt2 does not say what the ascii codes for #\return or
#\newline should be, but shouldn't there be some way to do this?
Help!