summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2018-10-09 22:51:55 +0530
committerGitHub <noreply@github.com>2018-10-09 22:51:55 +0530
commit93fc04dbb35921cf08d7b6aa16bfdfa2758b87ac (patch)
tree44ce1ca029de9b30bc00c2a86113954affbb4591
parent2cc496c3ef0fcc98f52266733ff14b6c222eeda7 (diff)
parent3a0ffaa05dae6b570c582f7fd6ee3192e8caefb1 (diff)
Merge pull request #3273 from divayprakash/fix-common-lisp
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