From da57db08f24a0358b0be13708f50f28faa14d9da Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Tue, 3 Feb 1998 19:02:16 +0000
Subject: [PATCH] String streams were returning non-existent type 'string-char
 instead of 'base-char. Also, loop was barfing on base-char declaration
 wanting instead to see string-char. Simply fixed.

---
 code/loop.lisp   | 2 +-
 code/stream.lisp | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/code/loop.lisp b/code/loop.lisp
index 1adceb406..102bbe9ed 100644
--- a/code/loop.lisp
+++ b/code/loop.lisp
@@ -2096,7 +2096,7 @@ collected result will be returned as the value of the LOOP."
 				   ratio rational readtable sequence short-float
 				   simple-array simple-bit-vector simple-string
 				   simple-vector single-float standard-char
-				   stream string string-char
+				   stream string base-char
 				   symbol t vector)
 	     :type-keywords nil
 	     :ansi (if extended-p :extended t))))
diff --git a/code/stream.lisp b/code/stream.lisp
index 58826945c..956546b4d 100644
--- a/code/stream.lisp
+++ b/code/stream.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.26 1997/10/24 18:08:03 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.27 1998/02/03 19:02:16 pw Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -919,7 +919,7 @@
     (:listen (or (/= (the fixnum (string-input-stream-current stream))
 		     (the fixnum (string-input-stream-end stream)))
 		 :eof))
-    (:element-type 'string-char)))
+    (:element-type 'base-char)))
   
 (defun make-string-input-stream (string &optional
 					(start 0) (end (length string)))
@@ -1001,7 +1001,7 @@
 		(fixnum index count))
        (if (char= (schar string index) #\newline)
 	   (return count))))
-    (:element-type 'string-char)))
+    (:element-type 'base-char)))
 
 (defun get-output-stream-string (stream)
   "Returns a string of all the characters sent to a stream made by
@@ -1103,7 +1103,7 @@
 	   (if found
 	       (- end (the fixnum found))
 	       current)))))
-     (:element-type 'string-char)))
+     (:element-type 'base-char)))
 
 ;;;; Indenting streams:
 
-- 
GitLab