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
81c21a0e
Commit
81c21a0e
authored
Nov 23, 2016
by
Zach Beane
Browse files
Improve semantics of EXCL.OSI:STAT.
Should signal an error if file in question does not exist.
parent
d8223174
Changes
1
Hide whitespace changes
Inline
Side-by-side
package-excl.lisp
View file @
81c21a0e
...
...
@@ -177,7 +177,9 @@ values otherwise."
(
file-kind
native-namestring
))
(
defun
excl.osi:stat
(
file
)
(
list
:mtime
(
stat-mtime
file
)))
(
if
(
probe-file
file
)
(
list
:mtime
(
stat-mtime
file
))
(
error
"~A does not exist"
file
)))
(
defun
excl.osi:stat-mtime
(
stat
)
(
getf
stat
:mtime
))
...
...
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