From cc19f62629fbef6d32d0225c75ad7356d1ed4843 Mon Sep 17 00:00:00 2001
From: Daniel Barlow <>
Date: Tue, 28 Jan 2003 13:19:52 +0000
Subject: [PATCH] Francois-Rene Rideau reports that Genera gets upset with our
 print-object specialisation on (stream stream), because STREAM is not a
 class.  The workaround is harmless anyway: just remove the specialisation

---
 asdf.lisp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/asdf.lisp b/asdf.lisp
index 193a58e3..d8b6adaa 100644
--- a/asdf.lisp
+++ b/asdf.lisp
@@ -1,4 +1,4 @@
-;;; This is asdf: Another System Definition Facility.  $Revision: 1.55 $
+;;; This is asdf: Another System Definition Facility.  $Revision: 1.56 $
 ;;;
 ;;; Feedback, bug reports, and patches are all welcome: please mail to
 ;;; <cclan-list@lists.sf.net>.  But note first that the canonical
@@ -88,7 +88,7 @@
 (in-package #:asdf)
 
 ;;; parse the cvs revision into something that might be vaguely useful.  
-(defvar *asdf-revision* (let* ((v "$Revision: 1.55 $")
+(defvar *asdf-revision* (let* ((v "$Revision: 1.56 $")
 			       (colon (position #\: v))
 			       (dot (position #\. v)))
 			  (and v colon dot 
@@ -201,7 +201,7 @@ and NIL NAME and TYPE components"
        (component-system it)
        component))
 
-(defmethod print-object ((c component) (stream stream))
+(defmethod print-object ((c component) stream)
   (print-unreadable-object (c stream :type t :identity t)
     (ignore-errors
       (prin1 (component-name c) stream))))
@@ -501,7 +501,7 @@ system."))
 	;; original source file, then
 	(list (component-pathname c)))))
 
- (defmethod input-files ((operation operation) (c module)) nil)
+(defmethod input-files ((operation operation) (c module)) nil)
 
 (defmethod operation-done-p ((o operation) (c component))
   (let ((out-files (output-files o c))
-- 
GitLab