s-expressionists / Eclector

A portable Common Lisp reader that is highly customizable, can recover from errors and can return concrete syntax trees
https://s-expressionists.github.io/Eclector/
BSD 2-Clause "Simplified" License
109 stars 9 forks source link

(eclector.reader:read-from-string "-0.0") -> 0,0 not -0.0 #38

Closed kpoeck closed 5 years ago

kpoeck commented 5 years ago

Not 100% sure about this, but it is a deviation from other readers latest sbcl, latest eclector from git

* (eclector.reader:read-from-string  "-0.0")
0.0
4
but sbcl gives
* (Read-from-string "-0.0")
-0.0
4