From 4d962d7fdf41361791a77f9f899ac651d75aa4f0 Mon Sep 17 00:00:00 2001 From: Alfredo Beaumont Date: Thu, 25 Apr 2013 18:08:24 +0200 Subject: [PATCH] ls-compile: add compiling support for floats --- src/compiler.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler.lisp b/src/compiler.lisp index 08932fc..a59dc3a 100644 --- 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) -- 1.7.10.4