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
75c5bd04
Commit
75c5bd04
authored
Nov 11, 2016
by
Elias Pipping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make %normalize-system-command work for ECL
parent
11f15eb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
uiop/run-program.lisp
uiop/run-program.lisp
+4
-4
No files found.
uiop/run-program.lisp
View file @
75c5bd04
...
...
@@ -965,17 +965,17 @@ or :error-output."
(
string
(
os-cond
((
os-windows-p
)
#+
(
or
allegro
clisp
)
#+
(
or
allegro
clisp
ecl
)
(
strcat
(
%cmd-shell-pathname
)
" /c "
command
)
#-
(
or
allegro
clisp
)
command
)
#-
(
or
allegro
clisp
ecl
)
command
)
(
t
command
)))
(
list
(
escape-shell-command
(
os-cond
((
os-unix-p
)
(
cons
"exec"
command
))
((
os-windows-p
)
#+
(
or
allegro
clisp
sbcl
)
#+
(
or
allegro
clisp
ecl
sbcl
)
(
cons
(
%cmd-shell-pathname
)
(
cons
"/c"
command
))
#-
(
or
allegro
clisp
sbcl
)
command
)
#-
(
or
allegro
clisp
ecl
sbcl
)
command
)
(
t
command
))))))
(
defun
%redirected-system-command
(
command
in
out
err
directory
)
;; helper for %USE-SYSTEM
...
...
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