diff runtime/menu.vim @ 9555:9560a5b782ee

commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 17 13:35:14 2016 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Jul 2016 13:45:05 +0200
parents 92751673cc37
children 219dbe63ad2a
line wrap: on
line diff
--- a/runtime/menu.vim
+++ b/runtime/menu.vim
@@ -188,7 +188,7 @@ an 20.435	 &Edit.Startup\ &Settings		:ca
 fun! s:EditVimrc()
   if $MYVIMRC != ''
     let fname = $MYVIMRC
-  elseif has("win32") || has("dos32") || has("dos16") || has("os2")
+  elseif has("win32")
     if $HOME != ''
       let fname = $HOME . "/_vimrc"
     else
@@ -566,7 +566,7 @@ endfun
 func! s:XxdFind()
   if !exists("g:xxdprogram")
     " On the PC xxd may not be in the path but in the install directory
-    if (has("win32") || has("dos32")) && !executable("xxd")
+    if has("win32") && !executable("xxd")
       let g:xxdprogram = $VIMRUNTIME . (&shellslash ? '/' : '\') . "xxd.exe"
     else
       let g:xxdprogram = "xxd"