From 2bcc11276620557ab635a9698bd9b230a60e2e61 Mon Sep 17 00:00:00 2001 From: David Vazquez Date: Sat, 15 Dec 2012 18:18:27 +0000 Subject: [PATCH] Use comment instead of docstring to make bootstrapping easier --- lispstrack.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lispstrack.lisp b/lispstrack.lisp index 914d00e..d531561 100644 --- a/lispstrack.lisp +++ b/lispstrack.lisp @@ -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*)) -- 1.7.10.4