Make defjsmacro rend's docstring a comment so clisp will stop complaining
authorMarco Baringer <mb@bese.it>
Sat, 27 May 2006 09:31:59 +0000 (09:31 +0000)
committerMarco Baringer <mb@bese.it>
Sat, 27 May 2006 09:31:59 +0000 (09:31 +0000)
src/js.lisp

index 90d1304..e11890c 100644 (file)
@@ -1383,9 +1383,11 @@ prefix)."
 ;;; helper macros
 
 (defjsmacro rebind (variables expression)
-  "Creates a new js lexical environment and copies the given variable(s) there.
-Executes the body in the new environment. This has the same effect as a new
-(let () ...) form in lisp but works on the js side for js closures."
+  ;; Creates a new js lexical environment and copies the given
+  ;; variable(s) there.  Executes the body in the new environment. This
+  ;; has the same effect as a new (let () ...) form in lisp but works on
+  ;; the js side for js closures."
+  
   (unless (listp variables)
     (setf variables (list variables)))
   `((lambda ()