X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fearly-array.lisp;h=9d1dba2b17341b00b0c091e1dd1bece40e69f1e3;hb=085501b44cc1cbdd9e260139d30b383372ddd1b8;hp=8e6ea61580fcbf438aa244e91ae6a81eb9c29147;hpb=ec2616d216958a608581802c47496c0194478dc8;p=sbcl.git diff --git a/src/code/early-array.lisp b/src/code/early-array.lisp index 8e6ea61..9d1dba2 100644 --- a/src/code/early-array.lisp +++ b/src/code/early-array.lisp @@ -9,14 +9,14 @@ (in-package "SB!IMPL") -(defconstant sb!xc:array-rank-limit 65529 +(def!constant sb!xc:array-rank-limit 65529 #!+sb-doc "the exclusive upper bound on the rank of an array") -(defconstant sb!xc:array-dimension-limit sb!xc:most-positive-fixnum +(def!constant sb!xc:array-dimension-limit sb!xc:most-positive-fixnum #!+sb-doc "the exclusive upper bound on any given dimension of an array") -(defconstant sb!xc:array-total-size-limit sb!xc:most-positive-fixnum +(def!constant sb!xc:array-total-size-limit sb!xc:most-positive-fixnum #!+sb-doc "the exclusive upper bound on the total number of elements in an array")