diff --git a/runtime/autoload/ccomplete.vim b/runtime/autoload/ccomplete.vim index 5296038e0fea43ffc6202e489fc55a6ea0006b5e..0f013d79b76d95943deca2b3c11dd5467f3c4abd 100644 --- a/runtime/autoload/ccomplete.vim +++ b/runtime/autoload/ccomplete.vim @@ -1,7 +1,7 @@ " Vim completion script " Language: C " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2006 May 03 +" Last Change: 2006 May 08 " This function is used for the 'omnifunc' option. @@ -458,7 +458,7 @@ endfunction " member. function! s:StructMembers(typename, items, all) " Todo: What about local structures? - let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) + let fnames = join(map(tagfiles(), 'escape(v:val, " \\#%")')) if fnames == '' return [] endif diff --git a/src/version.c b/src/version.c index 9d0e4e6693abbd113a7939100d8b4bd085cc0fe8..8eb758b5aec64ec8af35e2eb16ed1a4db24ad7c3 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2, /**/ 1, /**/