r11328: fix printing of unreadable objects
This commit is contained in:
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
cl-puri (1.5.1-1) unstable; urgency=low
|
||||
|
||||
* New upstream
|
||||
|
||||
-- Kevin M. Rosenberg <kmr@debian.org> Sat, 2 Dec 2006 08:42:15 -0700
|
||||
|
||||
cl-puri (1.5-1) unstable; urgency=low
|
||||
|
||||
* Incorporate updates from latest Franz release
|
||||
|
||||
4
src.lisp
4
src.lisp
@ -926,12 +926,12 @@ URI ~s contains illegal character ~s at position ~d."
|
||||
|
||||
(defmethod print-object ((uri uri) stream)
|
||||
(if* *print-escape*
|
||||
then (format stream "#<~a ~a>" 'uri (render-uri uri nil))
|
||||
then (print-unreadable-object (uri stream :type t) (render-uri uri stream))
|
||||
else (render-uri uri stream)))
|
||||
|
||||
(defmethod print-object ((urn urn) stream)
|
||||
(if* *print-escape*
|
||||
then (format stream "#<~a ~a>" 'uri (render-urn urn nil))
|
||||
then (print-unreadable-object (urn stream :type t) (render-urn urn stream))
|
||||
else (render-urn urn stream)))
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
Reference in New Issue
Block a user