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.097 < prev    next >
Encoding:
Internet Message Format  |  2001-12-12  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.097
  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.097
  11. Problem:    Re-indenting in Insert mode with CTRL-F may cause a crash with a
  12.         multi-byte encoding.
  13. Solution:   Avoid using a character before the start of a line. (Sergey
  14.         Vlasov)
  15. Files:        src/edit.c
  16.  
  17.  
  18. *** ../vim60.96/src/edit.c    Tue Nov  6 21:57:04 2001
  19. --- src/edit.c    Thu Dec 13 18:51:50 2001
  20. ***************
  21. *** 1510,1516 ****
  22.       {
  23.           last_vcol = vcol;
  24.   #ifdef FEAT_MBYTE
  25. !         if (has_mbyte)
  26.           new_cursor_col += (*mb_ptr2len_check)(ptr + new_cursor_col);
  27.           else
  28.   #endif
  29. --- 1510,1516 ----
  30.       {
  31.           last_vcol = vcol;
  32.   #ifdef FEAT_MBYTE
  33. !         if (has_mbyte && new_cursor_col >= 0)
  34.           new_cursor_col += (*mb_ptr2len_check)(ptr + new_cursor_col);
  35.           else
  36.   #endif
  37. *** ../vim60.96/src/version.c    Wed Dec 12 21:42:23 2001
  38. --- src/version.c    Thu Dec 13 19:13:10 2001
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     97,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 78. You find yourself dialing IP numbers on the phone.
  50.  
  51.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  52. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  53.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  54.