From 3e29db27eda5fce01361d840fe789edc5d48b6ea Mon Sep 17 00:00:00 2001 From: Daniel Gackle Date: Sat, 11 Apr 2009 15:47:17 -0700 Subject: [PATCH] Generate "[]" rather than "new Array()" for concision. --- src/special-forms.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/special-forms.lisp b/src/special-forms.lisp index 0839dcb..8b6fe8a 100644 --- a/src/special-forms.lisp +++ b/src/special-forms.lisp @@ -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))) -- 2.20.1