0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.2a-011

This commit is contained in:
Bram Moolenaar 2008-07-01 19:56:57 +00:00
parent 89bf0927af
commit e30de2d1dc
2 changed files with 7 additions and 5 deletions

View File

@ -2,7 +2,7 @@
" You can also use this as a start for your own set of menus. " You can also use this as a start for your own set of menus.
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: Bram Moolenaar <Bram@vim.org>
" Last Change: 2008 Jun 16 " Last Change: 2008 Jun 30
" Note that ":an" (short for ":anoremenu") is often used to make a menu work " Note that ":an" (short for ":anoremenu") is often used to make a menu work
" in all modes and avoid side effects from mappings defined by the user. " in all modes and avoid side effects from mappings defined by the user.
@ -186,17 +186,17 @@ an 20.435 &Edit.Startup\ &Settings :call <SID>EditVimrc()<CR>
fun! s:EditVimrc() fun! s:EditVimrc()
if $MYVIMRC != '' if $MYVIMRC != ''
let fname = "$MYVIMRC" let fname = $MYVIMRC
elseif has("win32") || has("dos32") || has("dos16") || has("os2") elseif has("win32") || has("dos32") || has("dos16") || has("os2")
if $HOME != '' if $HOME != ''
let fname = "$HOME/_vimrc" let fname = $HOME . "/_vimrc"
else else
let fname = "$VIM/_vimrc" let fname = $VIM . "/_vimrc"
endif endif
elseif has("amiga") elseif has("amiga")
let fname = "s:.vimrc" let fname = "s:.vimrc"
else else
let fname = "$HOME/.vimrc" let fname = $HOME . "/.vimrc"
endif endif
let fname = s:FnameEscape(fname) let fname = s:FnameEscape(fname)
if &mod if &mod

View File

@ -676,6 +676,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
11,
/**/ /**/
10, 10,
/**/ /**/