jsown
jsown copied to clipboard
\f and \n translation to #\linefeed
When parsing strings that have form feeds (\f) and new lines (\n) the parse function translate this escape character to the same common lisp value (#\linefeed), so if you compare them, they are equal. (equal (parse "\"foo\nbar\"") (parse "\"foo\fbar\"")) ==t Is this correct?. Shouldn't be replace \f by #\page (code-char 12) the correct behavior?. regards