Commit cc19f626 authored by Daniel Barlow's avatar Daniel Barlow
Browse files

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
parent d08e0cc9
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
;;; 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
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>.  But note first that the canonical
;;; <cclan-list@lists.sf.net>.  But note first that the canonical
@@ -88,7 +88,7 @@
(in-package #:asdf)
(in-package #:asdf)


;;; parse the cvs revision into something that might be vaguely useful.  
;;; 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))
			       (colon (position #\: v))
			       (dot (position #\. v)))
			       (dot (position #\. v)))
			  (and v colon dot 
			  (and v colon dot 
@@ -201,7 +201,7 @@ and NIL NAME and TYPE components"
       (component-system it)
       (component-system it)
       component))
       component))


(defmethod print-object ((c component) (stream stream))
(defmethod print-object ((c component) stream)
  (print-unreadable-object (c stream :type t :identity t)
  (print-unreadable-object (c stream :type t :identity t)
    (ignore-errors
    (ignore-errors
      (prin1 (component-name c) stream))))
      (prin1 (component-name c) stream))))