From d619b96f5f00c717dcbdc4e8c41ed1b5339ed19b Mon Sep 17 00:00:00 2001 From: "Robert P. Goldman" <rpgoldman@sift.net> Date: Fri, 25 Nov 2016 10:45:50 -0600 Subject: [PATCH] Clarify PARAMETER-ERROR. Previous error string implied that UIOP *never* supported string commands on Windows, but actually we do support them on some lisp implementations. --- uiop/run-program.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uiop/run-program.lisp b/uiop/run-program.lisp index 61b2f49b9..9e72b754f 100644 --- a/uiop/run-program.lisp +++ b/uiop/run-program.lisp @@ -362,7 +362,7 @@ for the implementation's underlying run-program function" ;; except in the most trivial cases where no quoting is needed. ;; Use at your own risk. #-(or allegro clisp clozure sbcl) - (parameter-error "~S doesn't support string commands on Windows: ~S" '%normalize-command command)) + (parameter-error "~S doesn't support string commands on Windows on this lisp: ~S" '%normalize-command command)) #+os-windows (list #+allegro (escape-windows-command command) -- GitLab