jscl-project / jscl

A Lisp-to-JavaScript compiler bootstrapped from Common Lisp

Home Page:https://jscl-project.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrong character reading

vlad-km opened this issue · comments

commented
JSCL version 0.8.2 built on 2 December 2022
CL-USER> #\Return
#\R
CL-USER> #\return
#\r
CL-USER> (char= #\Return (code-char 13)) ;; SBCL -> (char= #\Return (code-char 13)) => T
NIL
CL-USER> (code-char 13)
#\Return
CL-USER>