mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
Merge branch '1425_spaces_in_EDITOR'
* 1425_spaces_in_EDITOR: Ticket #1425 (External editor won't open if there are spaces in EDITOR variable)
This commit is contained in:
commit
d268dcd5f3
@ -163,7 +163,25 @@ int my_system (int flags, const char *shell, const char *command)
|
|||||||
if (flags & EXECUTE_AS_SHELL)
|
if (flags & EXECUTE_AS_SHELL)
|
||||||
execl (shell, shell, "-c", command, (char *) NULL);
|
execl (shell, shell, "-c", command, (char *) NULL);
|
||||||
else
|
else
|
||||||
execlp (shell, shell, command, (char *) NULL);
|
{
|
||||||
|
gchar **shell_tokens, *only_cmd;
|
||||||
|
shell_tokens = g_strsplit(shell," ", 2);
|
||||||
|
|
||||||
|
if (shell_tokens == NULL)
|
||||||
|
only_cmd = shell;
|
||||||
|
else
|
||||||
|
only_cmd = (*shell_tokens) ? *shell_tokens: shell;
|
||||||
|
|
||||||
|
execlp (only_cmd, shell, command, (char *) NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
execlp will replace current process,
|
||||||
|
therefore no sence in call of g_strfreev().
|
||||||
|
But this keeped for estetic reason :)
|
||||||
|
*/
|
||||||
|
g_strfreev(shell_tokens);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
_exit (127); /* Exec error */
|
_exit (127); /* Exec error */
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user