projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8ba637
)
ls-compile: add compiling support for floats
author
Alfredo Beaumont
<alfredo.beaumont@gmail.com>
Thu, 25 Apr 2013 16:08:24 +0000
(18:08 +0200)
committer
Alfredo Beaumont
<alfredo.beaumont@gmail.com>
Thu, 25 Apr 2013 16:08:24 +0000
(18:08 +0200)
src/compiler.lisp
patch
|
blob
|
history
diff --git
a/src/compiler.lisp
b/src/compiler.lisp
index
08932fc
..
a59dc3a
100644
(file)
--- a/
src/compiler.lisp
+++ b/
src/compiler.lisp
@@
-1637,6
+1637,7
@@
(t
(ls-compile `(symbol-value ',sexp))))))
((integerp sexp) (integer-to-string sexp))
+ ((floatp sexp) (float-to-string sexp))
((stringp sexp) (code "\"" (escape-string sexp) "\""))
((arrayp sexp) (literal sexp))
((listp sexp)