Generate "[]" rather than "new Array()" for concision.
authorDaniel Gackle <danielgackle@gmail.com>
Sat, 11 Apr 2009 22:47:17 +0000 (15:47 -0700)
committerDaniel Gackle <danielgackle@gmail.com>
Sat, 11 Apr 2009 22:47:17 +0000 (15:47 -0700)
src/special-forms.lisp

index 0839dcb..8b6fe8a 100644 (file)
@@ -27,7 +27,7 @@
 (defpsmacro quote (x)
   (typecase x
     (cons (cons 'array (mapcar (lambda (x) `',x) x)))
-    (null '(make-array))
+    (null '(array))
     (symbol (symbol-to-js-string x))
     (number x)
     (string x)))