diff --git a/code/fd-stream.lisp b/code/fd-stream.lisp
index d6b7d849b8d8870d40de1904f00234dccb535193..c0a44de9302a761d3f1333f8152b3ecf8a37b308 100644
--- a/code/fd-stream.lisp
+++ b/code/fd-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/fd-stream.lisp,v 1.62 2002/12/12 19:09:45 moore Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.63 2002/12/12 19:11:11 moore Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -32,8 +32,6 @@
 (in-package "LISP")
 
 (export '(file-stream file-string-length stream-external-format))
-#+nil
-(deftype file-stream () 'fd-stream)
 
 
 ;;;; Buffer manipulation routines.
diff --git a/code/stream.lisp b/code/stream.lisp
index ade6c19ce8b6426488074822846aa7aa76377dec..2c21ca707d1e6ca66e4b8ba1f2f4e0421f775ca6 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.57 2002/12/12 19:09:46 moore Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.58 2002/12/12 19:11:11 moore Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -47,11 +47,6 @@
 
 (in-package "LISP")
 
-#+nil
-(deftype string-stream ()
-  '(or string-input-stream string-output-stream
-       fill-pointer-output-stream))
-
 ;;;; Standard streams:
 ;;;
 ;;; The initialization of these streams is performed by Stream-Init,