summaryrefslogtreecommitdiffstats
path: root/runtime/menu.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-17 13:35:14 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-17 13:35:14 +0200
commit42ebd066422d73cdb7bda6a1dc828a3dd022dec8 (patch)
treefa4f548d51f41039c3d6badc8f31a8445bdc876b /runtime/menu.vim
parent2cb70a2744d484d1b2005be0fd0ea7d6a94a8db7 (diff)
Update runtime files.
Diffstat (limited to 'runtime/menu.vim')
-rw-r--r--runtime/menu.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/menu.vim b/runtime/menu.vim
index 5c5bb97208..15697b33ad 100644
--- a/runtime/menu.vim
+++ b/runtime/menu.vim
@@ -188,7 +188,7 @@ an 20.435 &Edit.Startup\ &Settings :call <SID>EditVimrc()<CR>
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"