diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-02-05 17:13:08 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-02-05 17:13:08 -0300 |
commit | a0586bd6fed38914b2112c5f834bd66140758e30 (patch) | |
tree | 099c0841685e381463708088167fe93e33fd4cf9 /load.lisp | |
parent | 0a845037e0381f7d2cd9450170a8150b4d6400b0 (diff) | |
download | json-a0586bd6fed38914b2112c5f834bd66140758e30.tar.gz json-a0586bd6fed38914b2112c5f834bd66140758e30.zip |
Fix error when parsing double floats
Diffstat (limited to 'load.lisp')
-rw-r--r-- | load.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ nothing))) (read-from-string (str:from-list - (remove nil (append base (cons dot fraction) (cons e exponent)))))))) + (remove nil (append base (cons dot fraction) (cons (when e #\d) exponent)))))))) (defparameter string-literal (comp ((_ (unit #\")) |