From fdefc14d5a94a5ee7437f60c1c15c93f22308225 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Wed, 7 Mar 1990 18:48:01 +0000
Subject: [PATCH] Simple strings hold string-chars, not base-characters (yet). 
 This caused (primitive-type 'simple-string) to return T.

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

diff --git a/compiler/mips/vm.lisp b/compiler/mips/vm.lisp
index 6de6289e6..4e47cf666 100644
--- a/compiler/mips/vm.lisp
+++ b/compiler/mips/vm.lisp
@@ -7,7 +7,7 @@
 ;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU)
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.14 1990/03/06 20:03:39 ch Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.15 1990/03/07 18:48:01 wlott Exp $
 ;;;
 ;;; This file contains the VM definition for the MIPS R2000 and the new
 ;;; object format.
@@ -246,7 +246,7 @@
 
 ;;; 
 (defvar *simple-array-primitive-types*
-  '((base-character . simple-string)
+  '((string-char . simple-string)
     (bit . simple-bit-vector)
     ((unsigned-byte 2) . simple-array-unsigned-byte-2)
     ((unsigned-byte 4) . simple-array-unsigned-byte-4)
-- 
GitLab