diff --git a/hemlock/abbrev.lisp b/hemlock/abbrev.lisp
index a4981d5e6b6c7c1d7b2b201bd220e488a14a7edf..9ce843d0f836d000eb63652cabb5fc6857f1185c 100644
--- a/hemlock/abbrev.lisp
+++ b/hemlock/abbrev.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/abbrev.lisp,v 1.1.1.3 1991/02/08 16:32:29 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/abbrev.lisp,v 1.1.1.4 1991/11/09 03:05:25 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -513,7 +513,7 @@
 	     :default (value abbrev-pathname-defaults)
 	     :must-exist nil)))
   (with-open-file (file (value abbrev-pathname-defaults) :direction :input
-			:element-type 'base-character :if-does-not-exist :error)
+			:element-type 'base-char :if-does-not-exist :error)
     (read-abbrevs file)))
 
 
@@ -587,7 +587,7 @@
 	   :help "Name of the file to write current abbrevs to."
 	   :must-exist nil)))
   (with-open-file (file filename :direction :output
-			:element-type 'base-character :if-exists :supersede
+			:element-type 'base-char :if-exists :supersede
 			:if-does-not-exist :create)
     (multiple-value-bind (x mode-tables) (count-abbrevs)
       (declare (ignore x))
@@ -630,7 +630,7 @@
 
 (defun write-incremental (mode filename)
   (with-open-file (file filename :direction :output
-			:element-type 'base-character
+			:element-type 'base-char
 			:if-exists mode :if-does-not-exist :create)
     (dolist (def *new-abbrevs*)
       (let ((abb (car def))
diff --git a/hemlock/bit-stream.lisp b/hemlock/bit-stream.lisp
index 95d14af71fbc5b77733ee0f2b7dafc747836ad7c..051b06fd12c8770526d0eea2f5173ea39632acdc 100644
--- a/hemlock/bit-stream.lisp
+++ b/hemlock/bit-stream.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/bit-stream.lisp,v 1.1.1.2 1991/02/08 16:33:05 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/bit-stream.lisp,v 1.1.1.3 1991/11/09 03:05:30 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -89,7 +89,7 @@
 	 (funcall (device-force-output device)))))
     (:line-length
      (bitmap-hunk-char-width (bitmap-hunk-output-stream-hunk stream)))
-    (:element-type 'base-character)))
+    (:element-type 'base-char)))
 
 
 ;;; Bitmap-Hunk-Out  --  Internal
diff --git a/hemlock/charmacs.lisp b/hemlock/charmacs.lisp
index cb25353b570966955a604041778e179451450468..22c360fc538a61ccf6bd430a880a7ae3e89b9b9b 100644
--- a/hemlock/charmacs.lisp
+++ b/hemlock/charmacs.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/charmacs.lisp,v 1.1.1.6 1991/06/21 19:42:58 chiles Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/charmacs.lisp,v 1.1.1.7 1991/11/09 03:05:31 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -59,7 +59,7 @@
 ;;; Doesn't do anything special, but it should fast and not waste any time
 ;;; checking type and whatnot.
 (defmacro search-char-upcase (ch)
-  `(char-upcase (the base-character ,ch)))
+  `(char-upcase (the base-char ,ch)))
 
 
 
diff --git a/hemlock/htext3.lisp b/hemlock/htext3.lisp
index fb9397b87b940a3bacea3fcf4a55be8e03234f46..9f40787392016618dfb9c51231cf3121e34577a9 100644
--- a/hemlock/htext3.lisp
+++ b/hemlock/htext3.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/htext3.lisp,v 1.1.1.2 1991/02/08 16:35:11 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/htext3.lisp,v 1.1.1.3 1991/11/09 03:05:36 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -26,7 +26,7 @@
 
 (defun insert-character (mark character)
   "Inserts the Character at the specified Mark."
-  (declare (type base-character character))
+  (declare (type base-char character))
   (let* ((line (mark-line mark))
 	 (buffer (line-%buffer line)))
     (modifying-buffer buffer
diff --git a/hemlock/key-event.lisp b/hemlock/key-event.lisp
index 3f78e875ec21b53cfcecf1c66023d512971d485d..5b8e5cf58625c3a43ec53d5186450e60bcf75d04 100644
--- a/hemlock/key-event.lisp
+++ b/hemlock/key-event.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/key-event.lisp,v 1.1.1.5 1991/02/08 16:35:37 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/key-event.lisp,v 1.1.1.6 1991/11/09 03:05:42 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -316,7 +316,7 @@
 ;;; modifier identifier.
 ;;;
 (defvar *id-namestring*
-  (make-array 30 :adjustable t :fill-pointer 0 :element-type 'base-character))
+  (make-array 30 :adjustable t :fill-pointer 0 :element-type 'base-char))
 
 ;;; PARSE-KEY-FUN -- Internal.
 ;;;
diff --git a/hemlock/spell-build.lisp b/hemlock/spell-build.lisp
index 660bc904b25d19c66429db1e2f6199760fa959f9..4bc7aa287fec40447a76a62c8cfc072fdb4c1a12 100644
--- a/hemlock/spell-build.lisp
+++ b/hemlock/spell-build.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/spell-build.lisp,v 1.1.1.5 1991/02/08 16:37:47 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/spell-build.lisp,v 1.1.1.6 1991/11/09 03:05:46 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -243,6 +243,6 @@
 	  (write-byte (aref dictionary i) s))
 	(dotimes (i descriptors-size)
 	  (write-byte (aref descriptors i) s))))
-    (with-open-file (s f :direction :output :element-type 'base-character
+    (with-open-file (s f :direction :output :element-type 'base-char
 		         :if-exists :append)
       (write-string string-table s :end string-table-length))))
diff --git a/hemlock/streams.lisp b/hemlock/streams.lisp
index 303da19d51d9d20170f3dafe31ad09a954a8164f..c692067a22ca94e69fe35c8337a01705766a6a45 100644
--- a/hemlock/streams.lisp
+++ b/hemlock/streams.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/streams.lisp,v 1.1.1.4 1991/02/08 16:38:09 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/streams.lisp,v 1.1.1.5 1991/11/09 03:05:54 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -127,7 +127,7 @@
     ((:finish-output :force-output)
      (redisplay-windows-from-mark (hemlock-output-stream-mark stream)))
     (:close (setf (hemlock-output-stream-mark stream) nil))
-    (:element-type 'base-character)))
+    (:element-type 'base-char)))
 
 (defstruct (hemlock-region-stream
 	    (:include stream
@@ -261,7 +261,7 @@
     (:close
      (delete-mark (hemlock-region-stream-mark stream))
      (setf (hemlock-region-stream-region stream) nil))
-    (:element-type 'base-character)))
+    (:element-type 'base-char)))
 
 ;;;; Stuff to support keyboard macros.
 
diff --git a/hemlock/table.lisp b/hemlock/table.lisp
index 5ee0e9f823ab4434b8a9db69cdb4a08415d55814..d2a66b0624b0a0505b15b5f7ecd142459c06aa29 100644
--- a/hemlock/table.lisp
+++ b/hemlock/table.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/table.lisp,v 1.1.1.3 1991/04/23 11:53:53 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/table.lisp,v 1.1.1.4 1991/11/09 03:05:57 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -73,7 +73,7 @@
 	    (:print-function print-string-table))
   "This structure is used to implement the Hemlock string-table type."
   ;; Character used to 
-  (separator #\Space :type base-character) ; character used for word separator
+  (separator #\Space :type base-char) ; character used for word separator
   (num-nodes 0 :type fixnum)		   ; number of nodes in string table
   (value-nodes (make-array initial-string-table-size)) ; value node array
   (first-word-table (make-word-table)))	   ; pointer to first WORD-TABLE
@@ -86,7 +86,7 @@
   "Creates and returns a Hemlock string-table.  If Intitial-Contents is
   supplied in the form of an A-list of string-value pairs, these pairs
   will be used to initialize the table.  If Separator, which must be a
-  base-character, is specified then it will be used to distinguish word
+  base-char, is specified then it will be used to distinguish word
   boundaries."
   (let ((table (%make-string-table separator)))
     (dolist (x initial-contents)
@@ -264,7 +264,7 @@
 ) ; eval-when
 
 (defun with-folded-munge-string (str separator)
-  (declare (simple-string str) (base-character separator))
+  (declare (simple-string str) (base-char separator))
   (let ((str-len (length str))
 	(sep-pos nil)
 	(buf-pos 0))
@@ -570,7 +570,7 @@
   (values nil nil))
 
 (defun compute-field-pos (given best separator)
-  (declare (simple-string given best) (base-character separator))
+  (declare (simple-string given best) (base-char separator))
   (let ((give-pos 0)
 	(best-pos 0))
     (loop
@@ -584,7 +584,7 @@
 ;;;; Find-Longest-Completion
 
 (defun find-longest-completion (strings separator)
-  (declare (base-character separator))
+  (declare (base-char separator))
   (let ((first (car strings))
 	(rest-strings (cdr strings))
 	(punt-p nil)
diff --git a/hemlock/ts-stream.lisp b/hemlock/ts-stream.lisp
index 4c1f34d2def578f65f1809736fddc0b28f24d3d7..febc0aa2c7067c95c811b26f97ea22134f796a35 100644
--- a/hemlock/ts-stream.lisp
+++ b/hemlock/ts-stream.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/ts-stream.lisp,v 1.1.1.8 1991/06/10 16:59:22 chiles Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/ts-stream.lisp,v 1.1.1.9 1991/11/09 03:06:00 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -219,7 +219,7 @@
 ;;; Output a single character to stream.
 ;;;
 (defun %ts-stream-out (stream char)
-  (declare (base-character char))
+  (declare (base-char char))
   (system:without-interrupts
    (system:without-gcing
     (when (= (ts-stream-output-buffer-index stream)
@@ -363,7 +363,7 @@
      (setf (ts-stream-output-buffer-index stream) 0)
      t)
     (:element-type
-     'base-character)
+     'base-char)
     (:charpos
      (ts-stream-char-pos stream))
     (:line-length
diff --git a/hemlock/tty-stream.lisp b/hemlock/tty-stream.lisp
index 190eca26fa70ef453144f689c8f62fcccf58f970..013a7df605212a3da073a4e28ca29f6a8264df17 100644
--- a/hemlock/tty-stream.lisp
+++ b/hemlock/tty-stream.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/tty-stream.lisp,v 1.1.1.2 1991/02/08 16:38:58 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/tty-stream.lisp,v 1.1.1.3 1991/11/09 03:06:04 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -91,7 +91,7 @@
 	 (funcall (device-force-output device)))))
     (:line-length
      (stream-hunk-width (tty-hunk-output-stream-hunk stream)))
-    (:element-type 'base-character)))
+    (:element-type 'base-char)))
 
 ;;; HUNK-SOUT writes a byte-blt's a string to a hunk-stream's buffer.
 ;;; When newlines are found, recurse on the substrings delimited by start,