Use comment instead of docstring to make bootstrapping easier
authorDavid Vazquez <davazp@gmail.com>
Sat, 15 Dec 2012 18:18:27 +0000 (18:18 +0000)
committerDavid Vazquez <davazp@gmail.com>
Sat, 15 Dec 2012 18:18:27 +0000 (18:18 +0000)
lispstrack.lisp

index 914d00e..d531561 100644 (file)
@@ -54,8 +54,9 @@
        (error "Undefined variable `~a'"  symbol))))
 
 (defmacro define-compilation (name args &body body)
-  "creates a new primitive `name' with parameters args and @body. The
-body can access to the local environment through the variable env"
+  ;; Creates a new primitive `name' with parameters args and
+  ;; @body. The body can access to the local environment through the
+  ;; variable ENV.
   `(push (list ',name (lambda (env ,@args) ,@body))
          *compilations*))