]> granicus.if.org Git - vim/commitdiff
patch 8.0.0419: test for v:progpath fails on MS-Windows v8.0.0419
authorBram Moolenaar <Bram@vim.org>
Sun, 5 Mar 2017 14:19:32 +0000 (15:19 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 5 Mar 2017 14:19:32 +0000 (15:19 +0100)
Problem:    Test for v:progpath fails on MS-Windows.
Solution:   Expand to full path.  Also add ".exe" when the path is an absolute
            path.

src/main.c
src/os_win32.c
src/version.c

index 8669e33a009d9e98393beeac206ab15cb01f9edc..0f9f3fff4e1dec5ec1e48704b78fdf5f2c496b4c 100644 (file)
@@ -3533,31 +3533,30 @@ time_msg(
 set_progpath(char_u *argv0)
 {
     char_u *val = argv0;
-#ifdef WIN32
-    char_u *path = NULL;
-#else
-    char_u buf[MAXPATHL];
-#endif
 
     /* A relative path containing a "/" will become invalid when using ":cd",
      * turn it into a full path.
-     * On MS-Windows "vim.exe" is found in the current directory, thus also do
-     * it when there is no path and the file exists. */
-    if (!mch_isFullName(argv0))
-    {
+     * On MS-Windows "vim" should be expanded to "vim.exe", thus always do
+     * this. */
 # ifdef WIN32
-       if (mch_can_exe(argv0, &path, FALSE) && path != NULL)
-           val = path;
+    char_u *path = NULL;
+
+    if (mch_can_exe(argv0, &path, FALSE) && path != NULL)
+       val = path;
 # else
+    char_u buf[MAXPATHL];
+
+    if (!mch_isFullName(argv0))
+    {
        if (gettail(argv0) != argv0
                           && vim_FullName(argv0, buf, MAXPATHL, TRUE) != FAIL)
            val = buf;
-# endif
     }
+# endif
     set_vim_var_string(VV_PROGPATH, val, -1);
-#ifdef WIN32
+# ifdef WIN32
     vim_free(path);
-#endif
+# endif
 }
 
 #endif /* NO_VIM_MAIN */
index dd3e6def5cb50d1c6c9500858e84422a1a8d9085..7081e037d2866eca2fcab413e661381f499d5f80 100644 (file)
@@ -1921,7 +1921,12 @@ executable_exists(char *name, char_u **path, int use_path)
        if (mch_getperm(name) != -1 && !mch_isdir(name))
        {
            if (path != NULL)
-               *path = vim_strsave((char_u *)name);
+           {
+               if (mch_isFullName(name))
+                   *path = vim_strsave((char_u *)name);
+               else
+                   *path = FullName_save((char_u *)name, FALSE);
+           }
            return TRUE;
        }
        return FALSE;
index 6558b01f33d6084a5ee0a44e0d749c828431cd6d..834f1442e006de423aac3d736f825e13bc21ddbc 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    419,
 /**/
     418,
 /**/