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.095 < prev    next >
Encoding:
Internet Message Format  |  2001-12-11  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.095
  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.095
  11. Problem:    Perl: Deleting lines may leave the cursor beyond the end of the
  12.         file.
  13. Solution:   Check the cursor position after deleting a line. (Serguei)
  14. Files:        src/if_perl.xs
  15.  
  16.  
  17. *** ../vim60.94/src/if_perl.xs    Sun Nov  4 14:31:23 2001
  18. --- src/if_perl.xs    Wed Dec 12 20:59:21 2001
  19. ***************
  20. *** 1086,1091 ****
  21. --- 1086,1092 ----
  22.               {
  23.               ml_delete(lnum, 0);
  24.               deleted_lines_mark(lnum, 1L);
  25. +             check_cursor();
  26.               }
  27.               curbuf = savebuf;
  28.               update_curbuf(VALID);
  29. *** ../vim60.94/src/version.c    Wed Dec 12 20:36:34 2001
  30. --- src/version.c    Wed Dec 12 21:03:16 2001
  31. ***************
  32. *** 608,609 ****
  33. --- 608,611 ----
  34.   {   /* Add new patch number below this line */
  35. + /**/
  36. +     95,
  37.   /**/
  38.  
  39. -- 
  40. hundred-and-one symptoms of being an internet addict:
  41. 48. You get a tatoo that says "This body best viewed with Netscape 3.1 or
  42.     higher."
  43.  
  44.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  45. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  46.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  47.