Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
puri
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
clpm
puri
Commits
d3d27bf7
Commit
d3d27bf7
authored
Dec 02, 2006
by
Kevin M. Rosenberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
r11328: fix printing of unreadable objects
parent
912aa71f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
debian/changelog
debian/changelog
+6
-0
src.lisp
src.lisp
+2
-2
No files found.
debian/changelog
View file @
d3d27bf7
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
...
...
src.lisp
View file @
d3d27bf7
...
...
@@ -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
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment