Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zach Beane
zacl
Commits
7afed378
Commit
7afed378
authored
Nov 22, 2016
by
Zach Beane
Browse files
Fix semantics of NET.URI:COPY-URI.
The default args to all keywords must be populated to produce a valid copy.
parent
78155238
Changes
1
Hide whitespace changes
Inline
Side-by-side
package-net.uri.lisp
View file @
7afed378
...
...
@@ -52,7 +52,15 @@
(
setf
(
uri-scheme
(
real-uri
uri
))
new-value
))
(
defun
net.uri:copy-uri
(
uri
&key
scheme
userinfo
host
port
path
query
fragment
)
(
defun
net.uri:copy-uri
(
uri
&key
(
scheme
(
net.uri:uri-scheme
uri
))
(
userinfo
(
net.uri:uri-userinfo
uri
))
(
host
(
net.uri:uri-host
uri
))
(
port
(
net.uri:uri-port
uri
))
(
path
(
net.uri:uri-path
uri
))
(
query
(
net.uri:uri-query
uri
))
(
fragment
(
net.uri:uri-fragment
uri
)))
(
copy-uri
(
real-uri
uri
)
:scheme
scheme
:userinfo
userinfo
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment