git » jacl.git » commit 581926b

fix defvar

author Alan Dipert
2020-06-27 14:29:42 UTC
committer Alan Dipert
2020-06-27 14:29:42 UTC
parent ac8086bba1d0daa69b7b986c79e08ff4d37d1ebd

fix defvar

boot.lisp +1 -1

diff --git a/boot.lisp b/boot.lisp
index a971d1e..52518d4 100644
--- a/boot.lisp
+++ b/boot.lisp
@@ -90,7 +90,7 @@
   `(progn
     (jacl:%js "~{}.isSpecial = true" ',symbol)
     (when (jacl:%js "(((~{}.value === UNDEFINED) && ~{}) ? true : null)" ',symbol ,value?)
-      (jacl:%js "(~{}.value = ~{})" ',symbol ',value))
+      (jacl:%js "(~{}.value = ~{})" ',symbol ,value))
     ',symbol))
 
 (%export 'eq)