summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-11-29 16:46:44 +0000
committervimboss <devnull@localhost>2007-11-29 16:46:44 +0000
commitbbc44e2e998024200f94c54c8a984d08bb435441 (patch)
treed9dad24c963e5dfd6d7f0a9af18f969da0e299b4
parentba07e50fd6429887a37546992c0e55b3e844932b (diff)
downloadvim-bbc44e2e998024200f94c54c8a984d08bb435441.tar.gz
updated for version 7.1-163v7.1.163v7-1-163
-rw-r--r--runtime/menu.vim4
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/runtime/menu.vim b/runtime/menu.vim
index 8924206c..f0c0d699 100644
--- a/runtime/menu.vim
+++ b/runtime/menu.vim
@@ -2,7 +2,7 @@
" You can also use this as a start for your own set of menus.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2007 Jan 09
+" Last Change: 2007 Nov 19
" 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.
@@ -658,7 +658,6 @@ func! s:BMShow(...)
let buf = 1
while buf <= bufnr('$')
if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
- \ && !getbufvar(buf, "&bufsecret")
let s:bmenu_count = s:bmenu_count + 1
endif
let buf = buf + 1
@@ -671,7 +670,6 @@ func! s:BMShow(...)
let buf = 1
while buf <= bufnr('$')
if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
- \ && !getbufvar(buf, "&bufsecret")
call <SID>BMFilename(bufname(buf), buf)
endif
let buf = buf + 1
diff --git a/src/version.c b/src/version.c
index a60feae0..1dd2a239 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 163,
+/**/
162,
/**/
161,