diff options
author | Divay Prakash <divayprakash3@gmail.com> | 2018-10-09 22:49:47 +0530 |
---|---|---|
committer | Divay Prakash <divayprakash3@gmail.com> | 2018-10-09 22:49:47 +0530 |
commit | 3a0ffaa05dae6b570c582f7fd6ee3192e8caefb1 (patch) | |
tree | 44ce1ca029de9b30bc00c2a86113954affbb4591 /common-lisp.html.markdown | |
parent | 2cc496c3ef0fcc98f52266733ff14b6c222eeda7 (diff) |
Fix default make-array value, closes #2578
Diffstat (limited to 'common-lisp.html.markdown')
-rw-r--r-- | common-lisp.html.markdown | 3 |
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 |