Skip to content
Snippets Groups Projects
Commit 824c0f0d authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Emit an error in an unhandled corner case of run-program.

parent 8eec6938
No related branches found
No related tags found
No related merge requests found
...@@ -738,6 +738,8 @@ It returns a process-info plist with possible keys: ...@@ -738,6 +738,8 @@ It returns a process-info plist with possible keys:
(if (os-unix-p) (cons "exec" command) command))))) (if (os-unix-p) (cons "exec" command) command)))))
(defun %redirected-system-command (command in out err directory) ;; helper for %USE-SYSTEM (defun %redirected-system-command (command in out err directory) ;; helper for %USE-SYSTEM
(when (and directory (not (os-unix-p)))
(error "Can't change directory in run-program on non-Unix systems with system() backend"))
(flet ((redirect (spec operator) (flet ((redirect (spec operator)
(let ((pathname (let ((pathname
(typecase spec (typecase spec
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment