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 / 6.0.220 < prev    next >
Encoding:
Internet Message Format  |  2002-02-10  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.220
  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 6.0.220
  11. Problem:    After patch 6.0.218 get a beep on startup. (Muraoka Taro)
  12. Solution:   Don't try going to another window when there isn't one.
  13. Files:        runtime/plugin/explorer.vim
  14.  
  15.  
  16. *** ../vim60.219/runtime/plugin/explorer.vim    Mon Feb 11 19:58:15 2002
  17. --- runtime/plugin/explorer.vim    Mon Feb 11 21:57:35 2002
  18. ***************
  19. *** 1230,1235 ****
  20. --- 1230,1238 ----
  21.   " Required for "vim -o filename dirname"
  22.   "
  23.   function! s:EditAll()
  24. +   if winbufnr(2) == -1
  25. +     return
  26. +   endif
  27.     let t = winnr()
  28.     while 1
  29.       wincmd w
  30. *** ../vim60.219/src/version.c    Mon Feb 11 20:37:46 2002
  31. --- src/version.c    Mon Feb 11 21:58:42 2002
  32. ***************
  33. *** 608,609 ****
  34. --- 608,611 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     220,
  38.   /**/
  39.  
  40. -- 
  41. DENNIS:  Listen -- strange women lying in ponds distributing swords is no
  42.          basis for a system of government.  Supreme executive power derives
  43.          from a mandate from the masses, not from some farcical aquatic
  44.          ceremony.
  45.                                   The Quest for the Holy Grail (Monty Python)
  46.  
  47.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  48. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  49.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  50.