-
-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support spaces in EXTERNAL-EDITOR-PROGRAM
`VISUAL` and `EDITOR` might contain parameters, and we cannot mix and match strings and lists in `uiop:run-program` as it signals an error. We need explicit code paths for each. Example of new behavior when adding the argument "path": | editor | command | |-----------------------|------------------------------| | "editor --param" | "editor --param path" | | '("editor" "--param") | '("editor" "--param" "path") | The old behavior was | editor | command | |-----------------------|------------------------------| | "editor --param" | '("editor --param" "path") | | '("editor" "--param") | '("editor" "--param" "path") | `'("editor --param" "path")'` signals an error as it cannot find the command "editor --param".
- Loading branch information
Showing
5 changed files
with
46 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters