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.2 / 7.2.112 < prev    next >
Encoding:
Internet Message Format  |  2009-02-20  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.2.112
  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.2.112 
  11. Problem:    Cursor invisible in Visual mode when 'number' is set and cursor in 
  12.             first column. (Matti Niemenmaa, Renato Alves) 
  13. Solution:   Check that vcol_prev is smaller than vcol. 
  14. Files:      src/screen.c 
  15.  
  16.  
  17. *** ../vim-7.2.111/src/screen.c    Sat Feb 21 21:10:24 2009
  18. --- src/screen.c    Sat Feb 21 21:04:19 2009
  19. ***************
  20. *** 3422,3427 ****
  21. --- 3422,3428 ----
  22.               && (*mb_ptr2cells)(ptr) > 1)
  23.   #endif
  24.               || ((int)vcol_prev == fromcol_prev
  25. +             && vcol_prev < vcol    /* not at margin */
  26.               && vcol < tocol))
  27.           area_attr = attr;        /* start highlighting */
  28.           else if (area_attr != 0
  29. *** ../vim-7.2.111/src/version.c    Sat Feb 21 21:10:24 2009
  30. --- src/version.c    Sat Feb 21 21:20:51 2009
  31. ***************
  32. *** 678,679 ****
  33. --- 678,681 ----
  34.   {   /* Add new patch number below this line */
  35. + /**/
  36. +     112,
  37.   /**/
  38.  
  39. -- 
  40. hundred-and-one symptoms of being an internet addict:
  41. 102. When filling out your driver's license application, you give
  42.      your IP address.
  43.  
  44.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  45. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  46. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  47.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  48.