Fix nil translation
authorDavid Vazquez <davazp@gmail.com>
Tue, 18 Dec 2012 00:48:23 +0000 (00:48 +0000)
committerDavid Vazquez <davazp@gmail.com>
Tue, 18 Dec 2012 00:48:23 +0000 (00:48 +0000)
lispstrack.lisp

index 89d6c4c..f508f71 100644 (file)
 
 (defun literal->js (sexp)
   (cond
-    ((null sexp) "unspecified")
+    ((null sexp) "undefined")
     ((integerp sexp) (integer-to-string sexp))
     ((stringp sexp) (concat "\"" sexp "\""))
     ((symbolp sexp) (concat "{name: \"" (symbol-name sexp) "\"}"))