X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompat.lisp;h=3af42d0b9ce184085517e7d768cb1dfcba7dc257;hb=d19b5d61e75a24cb5ee6b53630d9ec01106bd641;hp=d682604f7a2fc9040561389c46d13ebe57cf81eb;hpb=c296885ca974898925b89af066b1b14a6fca0f57;p=jscl.git diff --git a/src/compat.lisp b/src/compat.lisp index d682604..3af42d0 100644 --- a/src/compat.lisp +++ b/src/compat.lisp @@ -34,16 +34,14 @@ ((not ,condition)) ,@body)) -(defmacro eval-when-compile (&body body) - `(eval-when (:compile-toplevel :load-toplevel :execute) - ,@body)) - (defun aset (array idx value) (setf (aref array idx) value)) -(eval-when-compile +(eval-when (:compile-toplevel :load-toplevel :execute) (defun concat (&rest strs) (apply #'concatenate 'string strs))) (defun /debug (x) - (write-line x)) + (declare (ignorable x)) + ;; (write-line x) + )