summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash3@gmail.com>2018-10-09 22:49:47 +0530
committerDivay Prakash <divayprakash3@gmail.com>2018-10-09 22:49:47 +0530
commit3a0ffaa05dae6b570c582f7fd6ee3192e8caefb1 (patch)
tree44ce1ca029de9b30bc00c2a86113954affbb4591
parent2cc496c3ef0fcc98f52266733ff14b6c222eeda7 (diff)
Fix default make-array value, closes #2578
-rw-r--r--common-lisp.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown
index 73843436..b12e50ca 100644
--- a/common-lisp.html.markdown
+++ b/common-lisp.html.markdown
@@ -284,7 +284,8 @@ nil ; false; also, the empty list: ()
;;; To access the element at 1, 1, 1:
(aref (make-array (list 2 2 2)) 1 1 1) ; => 0
-
+;;; This value is implementation-defined:
+;;; NIL on ECL, 0 on SBCL and CCL.
;;; Adjustable vectors