]> granicus.if.org Git - vim/commitdiff
patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect v8.0.1455
authorBram Moolenaar <Bram@vim.org>
Sat, 3 Feb 2018 14:14:46 +0000 (15:14 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 3 Feb 2018 14:14:46 +0000 (15:14 +0100)
Problem:    If $SHELL contains a space then the default value of 'shell' is
            incorrect. (Matthew Horan)
Solution:   Escape spaces in $SHELL. (Christian Brabandt, closes #459)

runtime/doc/options.txt
src/option.c
src/testdir/test_startup.vim
src/version.c

index 75e4f974168ac82e7f5fb64ed3e9e4cf3a7ff591..e584b3dbf5568d3c2dc5d3e593dd1179efb4e9a8 100644 (file)
@@ -6630,14 +6630,21 @@ A jump table for the options with a short description can be found at |Q_op|.
        It is allowed to give an argument to the command, e.g.  "csh -f".
        See |option-backslash| about including spaces and backslashes.
        Environment variables are expanded |:set_env|.
+
        If the name of the shell contains a space, you might need to enclose
-       it in quotes.  Example: >
+       it in quotes or escape the space.  Example with quotes: >
                :set shell=\"c:\program\ files\unix\sh.exe\"\ -f
 <      Note the backslash before each quote (to avoid starting a comment) and
        each space (to avoid ending the option value).  Also note that the
        "-f" is not inside the quotes, because it is not part of the command
-       name.  And Vim automagically recognizes the backslashes that are path
+       name.  Vim automagically recognizes the backslashes that are path
        separators.
+       Example with escaped space (Vim will do this when initializing the
+       option from $SHELL): >
+               :set shell=/bin/with\\\ space/sh
+<      The resulting value of 'shell' is  "/bin/with\ space/sh", two
+       backslashes are consumed by `:set`.
+
        Under MS-Windows, when the executable ends in ".com" it must be
        included.  Thus setting the shell to "command.com" or "4dos.com"
        works, but "command" and "4dos" do not work for all commands (e.g.,
index ce5436996826b85fae1a5fac926ec5e130ef448a..4898e694c5e80456f35f402643afd4515f375445 100644 (file)
@@ -3265,6 +3265,7 @@ static char *(p_scl_values[]) = {"yes", "no", "auto", NULL};
 
 static void set_option_default(int, int opt_flags, int compatible);
 static void set_options_default(int opt_flags);
+static void set_string_default_esc(char *name, char_u *val, int escape);
 static char_u *term_bg_default(void);
 static void did_set_option(int opt_idx, int opt_flags, int new_value);
 static char_u *illegal_char(char_u *, int);
@@ -3371,7 +3372,7 @@ set_init_1(void)
 # endif
 #endif
            )
-       set_string_default("sh", p);
+       set_string_default_esc("sh", p, TRUE);
 
 #ifdef FEAT_WILDIGN
     /*
@@ -3859,14 +3860,18 @@ set_options_default(
 /*
  * Set the Vi-default value of a string option.
  * Used for 'sh', 'backupskip' and 'term'.
+ * When "escape" is TRUE escape spaces with a backslash.
  */
-    void
-set_string_default(char *name, char_u *val)
+    static void
+set_string_default_esc(char *name, char_u *val, int escape)
 {
     char_u     *p;
     int                opt_idx;
 
-    p = vim_strsave(val);
+    if (escape && vim_strchr(val, ' ') != NULL)
+       p = vim_strsave_escaped(val, (char_u *)" ");
+    else
+       p = vim_strsave(val);
     if (p != NULL)             /* we don't want a NULL */
     {
        opt_idx = findoption((char_u *)name);
@@ -3880,6 +3885,12 @@ set_string_default(char *name, char_u *val)
     }
 }
 
+    void
+set_string_default(char *name, char_u *val)
+{
+    set_string_default_esc(name, val, FALSE);
+}
+
 /*
  * Set the Vi-default value of a number option.
  * Used for 'lines' and 'columns'.
index 6f67bfc11b9c3482598d23b564bdc368b444f082..42e4896186712090e4f136b1f587c3ec114c023a 100644 (file)
@@ -226,6 +226,20 @@ func Test_read_stdin()
   call delete('Xtestout')
 endfunc
 
+func Test_set_shell()
+  let after = [
+       \ 'call writefile([&shell], "Xtestout")',
+       \ 'quit!',
+       \ ]
+  let $SHELL = '/bin/with space/sh'
+  if RunVimPiped([], after, '', '')
+    let lines = readfile('Xtestout')
+    " MS-Windows adds a space after the word
+    call assert_equal('/bin/with\ space/sh', lines[0])
+  endif
+  call delete('Xtestout')
+endfunc
+
 func Test_progpath()
   " Tests normally run with "./vim" or "../vim", these must have been expanded
   " to a full path.
index 57040747f79b743ecaf360c5d69c36ab16418b9a..69ba3f505e688d5718b9a058bb5d6cdec43cc83b 100644 (file)
@@ -771,6 +771,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1455,
 /**/
     1454,
 /**/