author | Camm Maguire <camm@debian.org> | 2014年09月18日 09:58:32 -0400 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2014年09月18日 09:58:32 -0400 |
commit | b498d7148e7cc57ec32f95ff02536b9990ca06a6 (patch) | |
tree | bd11959556553525fc4fb665e7f3da017e91e2c1 | |
parent | 73318119cb2dce50b5df7a0f6706e1e0bcda5c8d (diff) | |
download | gcl-b498d7148e7cc57ec32f95ff02536b9990ca06a6.tar.gz |
-rwxr-xr-x | gcl/cmpnew/gcl_cmpinline.lsp | 4 |
diff --git a/gcl/cmpnew/gcl_cmpinline.lsp b/gcl/cmpnew/gcl_cmpinline.lsp index 8d7108b37..79d6383f7 100755 --- a/gcl/cmpnew/gcl_cmpinline.lsp +++ b/gcl/cmpnew/gcl_cmpinline.lsp @@ -30,8 +30,8 @@ ;;; are large, as occurs at present in running the random-int-form tester. ;;; 20040320 CM - -(defmacro mia (x y) `(make-array ,x :adjustable t :fill-pointer ,y)) +(defmacro mia (x y) `(si:make-vector t ,x t ,y nil 0 nil nil)) +;(defmacro mia (x y) `(make-array ,x :adjustable t :fill-pointer ,y)) (defmacro eql-not-nil (x y) `(and ,x (eql ,x ,y))) (defstruct (info (:copier old-copy-info)) |