Skip to content
Snippets Groups Projects
Commit 653f0208 authored by wlott's avatar wlott
Browse files

When converting MAKE-STRING into a MAKE-ARRAY, wrap the length with (the

index ...) so that MAKE-ARRAY can tell that it's a vector.
parent 3c8aff8f
No related branches found
No related tags found
No related merge requests found
...@@ -7,11 +7,11 @@ ...@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.12 1991/11/09 02:42:34 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.13 1991/11/09 18:57:19 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.12 1991/11/09 02:42:34 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.13 1991/11/09 18:57:19 wlott Exp $
;;; ;;;
;;; This file contains array specific optimizers and transforms. ;;; This file contains array specific optimizers and transforms.
;;; ;;;
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
;;; Just convert it into a make-array. ;;; Just convert it into a make-array.
;;; ;;;
(def-source-transform make-string (length &key (initial-element #\NULL)) (def-source-transform make-string (length &key (initial-element #\NULL))
`(make-array ,length `(make-array (the index ,length)
:element-type 'base-char :element-type 'base-char
:initial-element ,initial-element)) :initial-element ,initial-element))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment