home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.1 / 7.1.163 < prev    next >
Encoding:
Internet Message Format  |  2007-11-28  |  2.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.1.163
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.1.163
  11. Problem:    Warning for the unknown option 'bufsecret'.
  12. Solution:   Remove the lines .vim that use this option. (Andy Wokula)
  13. Files:        runtime/menu.vim
  14.  
  15.  
  16. *** ../vim-7.1.162/runtime/menu.vim    Sun May  6 15:21:23 2007
  17. --- runtime/menu.vim    Mon Nov 19 23:17:11 2007
  18. ***************
  19. *** 2,8 ****
  20.   " You can also use this as a start for your own set of menus.
  21.   "
  22.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  23. ! " Last Change:    2007 Jan 09
  24.   
  25.   " Note that ":an" (short for ":anoremenu") is often used to make a menu work
  26.   " in all modes and avoid side effects from mappings defined by the user.
  27. --- 2,8 ----
  28.   " You can also use this as a start for your own set of menus.
  29.   "
  30.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  31. ! " Last Change:    2007 Nov 19
  32.   
  33.   " Note that ":an" (short for ":anoremenu") is often used to make a menu work
  34.   " in all modes and avoid side effects from mappings defined by the user.
  35. ***************
  36. *** 658,664 ****
  37.     let buf = 1
  38.     while buf <= bufnr('$')
  39.       if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
  40. -                         \ && !getbufvar(buf, "&bufsecret")
  41.         let s:bmenu_count = s:bmenu_count + 1
  42.       endif
  43.       let buf = buf + 1
  44. --- 658,663 ----
  45. ***************
  46. *** 671,677 ****
  47.     let buf = 1
  48.     while buf <= bufnr('$')
  49.       if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
  50. -                         \ && !getbufvar(buf, "&bufsecret")
  51.         call <SID>BMFilename(bufname(buf), buf)
  52.       endif
  53.       let buf = buf + 1
  54. --- 670,675 ----
  55. *** ../vim-7.1.162/src/version.c    Sat Nov 24 21:49:19 2007
  56. --- src/version.c    Thu Nov 29 17:44:08 2007
  57. ***************
  58. *** 668,669 ****
  59. --- 668,671 ----
  60.   {   /* Add new patch number below this line */
  61. + /**/
  62. +     163,
  63.   /**/
  64.  
  65. -- 
  66. hundred-and-one symptoms of being an internet addict:
  67. 158. You get a tuner card so you can watch TV while surfing.
  68.  
  69.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  70. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  71. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  72.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  73.