From fac4a62e9e99eede94c0e14a40a9cba180614060 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 16 Nov 1990 06:01:07 +0000
Subject: [PATCH] The make-string source transform was quoting the initial
 element, even if it wasn't a constant.  Ooops.

---
 compiler/array-tran.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/array-tran.lisp b/compiler/array-tran.lisp
index c4d687131..7a60fa008 100644
--- a/compiler/array-tran.lisp
+++ b/compiler/array-tran.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.4 1990/11/13 06:16:57 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.5 1990/11/16 06:01:07 wlott Exp $
 ;;;
 ;;; This file contains array specific optimizers and transforms.
 ;;; 
@@ -158,7 +158,7 @@
 (def-source-transform make-string (length &key (initial-element #\NULL))
   `(make-array ,length
 	       :element-type 'base-character
-	       :initial-element ',initial-element))
+	       :initial-element ,initial-element))
 
 (defconstant array-info
   '((base-character #\NULL 8 vm:simple-string-type)
-- 
GitLab