jsown icon indicating copy to clipboard operation
jsown copied to clipboard

\f and \n translation to #\linefeed

Open kongotania opened this issue 4 years ago • 0 comments

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

kongotania avatar Sep 30 '20 02:09 kongotania