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
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
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
asdf
asdf
Commits
72400f08
Commit
72400f08
authored
May 03, 2014
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiop/os: try to fix getcwd on abcl on Windows.
parent
2f103d42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
uiop/os.lisp
uiop/os.lisp
+3
-3
No files found.
uiop/os.lisp
View file @
72400f08
...
...
@@ -247,9 +247,9 @@ suitable for use as a directory name to segregate Lisp FASLs, C dynamic librarie
(
defun
getcwd
()
"Get the current working directory as per POSIX getcwd(3), as a pathname object"
(
or
#+
abcl
(
symbol-call
:asdf/filesystem
:parse-native-namestring
(
java:jstatic
"getProperty"
"java.lang.System"
"user.dir"
)
:ensure-directory
t
)
(
or
#+
abcl
(
truename
(
symbol-call
:asdf/filesystem
:parse-native-namestring
(
java:jstatic
"getProperty"
"java.lang.System"
"user.dir"
)
:ensure-directory
t
)
)
#+
allegro
(
excl::current-directory
)
#+
clisp
(
ext:default-directory
)
#+
clozure
(
ccl:current-directory
)
...
...
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