Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
puri
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nyxt
puri
Commits
d3d27bf7
Commit
d3d27bf7
authored
18 years ago
by
Kevin M. Rosenberg
Browse files
Options
Downloads
Patches
Plain Diff
r11328: fix printing of unreadable objects
parent
912aa71f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
src.lisp
+2
-2
2 additions, 2 deletions
src.lisp
with
8 additions
and
2 deletions
debian/changelog
+
6
−
0
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
cl-puri (1.5-1) unstable; urgency=low
* Incorporate updates from latest Franz release
* Incorporate updates from latest Franz release
...
...
This diff is collapsed.
Click to expand it.
src.lisp
+
2
−
2
View file @
d3d27bf7
...
@@ -926,12 +926,12 @@ URI ~s contains illegal character ~s at position ~d."
...
@@ -926,12 +926,12 @@ URI ~s contains illegal character ~s at position ~d."
(
defmethod
print-object
((
uri
uri
)
stream
)
(
defmethod
print-object
((
uri
uri
)
stream
)
(
if*
*print-escape*
(
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
)))
else
(
render-uri
uri
stream
)))
(
defmethod
print-object
((
urn
urn
)
stream
)
(
defmethod
print-object
((
urn
urn
)
stream
)
(
if*
*print-escape*
(
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
)))
else
(
render-urn
urn
stream
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment