Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zach Beane
zacl
Commits
62d3205e
Commit
62d3205e
authored
Nov 18, 2016
by
Zach Beane
Browse files
Implement excl:rename-file-raw.
parent
7ea707d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
package-excl.lisp
View file @
62d3205e
...
...
@@ -142,6 +142,13 @@ values otherwise."
(
defun
excl::merge-to-physical
(
pathname
)
(
merge-pathnames
(
translate-logical-pathname
pathname
)))
(
defun
excl:rename-file-raw
(
file
new-name
)
(
let
((
new-name
(
merge-pathnames
new-name
(
make-pathname
:name
:unspecific
:type
:unspecific
:defaults
*default-pathname-defaults*
))))
(
rename-file
file
new-name
)))
(
defun
excl:delimited-string-to-list
(
string
delimiter
)
(
unless
(
characterp
delimiter
)
;; aserve only uses a character
...
...
package.lisp
View file @
62d3205e
...
...
@@ -167,6 +167,7 @@
#:md5-final
)
(
:export
#:gc
#:atomic-conditional-setf
#:rename-file-raw
#:delimited-string-to-list
#:stream-input-fn
#:fasl-write
...
...
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