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
acaf1d58
Commit
acaf1d58
authored
Oct 14, 2013
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bad paren in ccl::external-process-wait on Windows. Oops. Tweak a comment.
parent
57e33d18
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
uiop/common-lisp.lisp
uiop/common-lisp.lisp
+2
-2
uiop/utility.lisp
uiop/utility.lisp
+2
-2
No files found.
uiop/common-lisp.lisp
View file @
acaf1d58
...
...
@@ -53,9 +53,9 @@
(
unless
(
fboundp
'external-process-wait
)
(
in-development-mode
(
defun
external-process-wait
(
proc
)
(
when
(
external-process-pid
proc
)
)
(
when
(
external-process-pid
proc
)
(
with-interrupts-enabled
(
wait-on-semaphore
(
external-process-completed
proc
)))))))
(
wait-on-semaphore
(
external-process-completed
proc
)))))))
)
#+
clozure
(
in-package
:uiop/common-lisp
)
...
...
uiop/utility.lisp
View file @
acaf1d58
...
...
@@ -187,8 +187,8 @@ Returns two values: \(A B C\) and \(1 2 3\)."
;;; Characters
(
with-upgradability
()
(
defconstant
+non-base-chars-exist-p+
(
not
(
subtypep
'character
'base-char
)))
;; ECL, LW, SBCL
(
with-upgradability
()
;; base-char != character on ECL, LW, SBCL, Genera. LW also has SIMPLE-CHAR.
(
defconstant
+non-base-chars-exist-p+
(
not
(
subtypep
'character
'base-char
)))
(
when
+non-base-chars-exist-p+
(
pushnew
:non-base-chars-exist-p
*features*
)))
(
with-upgradability
()
...
...
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