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.1.246 < prev    next >
Encoding:
Internet Message Format  |  2002-10-28  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.246
  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.1.246
  11. Problem:    ":blast" goes to the first buffer if the last one is unlisted.
  12.         (Andrew Stryker)
  13. Solution:   From the last buffer search backwards for the first listed buffer
  14.         instead of forwards.
  15. Files:        src/ex_docmd.c
  16.  
  17.  
  18. *** ../vim61.245/src/ex_docmd.c    Sun Oct 27 20:44:05 2002
  19. --- src/ex_docmd.c    Tue Oct 29 19:30:38 2002
  20. ***************
  21. *** 3757,3763 ****
  22.   ex_blast(eap)
  23.       exarg_T    *eap;
  24.   {
  25. !     goto_buffer(eap, DOBUF_LAST, FORWARD, 0);
  26.   }
  27.   #endif
  28.   
  29. --- 3759,3765 ----
  30.   ex_blast(eap)
  31.       exarg_T    *eap;
  32.   {
  33. !     goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
  34.   }
  35.   #endif
  36.   
  37. *** ../vim61.245/src/version.c    Sun Oct 27 22:19:38 2002
  38. --- src/version.c    Tue Oct 29 19:34:18 2002
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     246,
  45.   /**/
  46.  
  47. -- 
  48. BLACK KNIGHT:  I move for no man.
  49. ARTHUR:        So be it!
  50.     [hah] [parry thrust]
  51.     [ARTHUR chops the BLACK KNIGHT's left arm off]
  52. ARTHUR:        Now stand aside, worthy adversary.
  53. BLACK KNIGHT:  'Tis but a scratch.
  54.                                   The Quest for the Holy Grail (Monty Python)
  55.  
  56.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  57. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  58. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  59.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  60.