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.273 < prev    next >
Encoding:
Internet Message Format  |  2003-01-04  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.273
  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.273
  11. Problem:    When the cursor doesn't blink, redrawing an exposed area may hide
  12.         the cursor.
  13. Solution:   Always draw the cursor, also when it didn't move. (Muraoka Taro)
  14. Files:        src/gui.c
  15.  
  16.  
  17. *** ../vim61.272/src/gui.c    Sun Oct 27 20:52:35 2002
  18. --- src/gui.c    Sun Dec 22 19:51:54 2002
  19. ***************
  20. *** 2112,2118 ****
  21.        * not reflect Vims internal ideas if these operations are clipped away.
  22.        */
  23.       if (gui.row == gui.cursor_row)
  24. !     gui_update_cursor(FALSE, TRUE);
  25.   }
  26.   
  27.   /*
  28. --- 2112,2118 ----
  29.        * not reflect Vims internal ideas if these operations are clipped away.
  30.        */
  31.       if (gui.row == gui.cursor_row)
  32. !     gui_update_cursor(TRUE, TRUE);
  33.   }
  34.   
  35.   /*
  36. *** ../vim61.272/src/version.c    Sun Jan  5 13:29:11 2003
  37. --- src/version.c    Sun Jan  5 13:32:01 2003
  38. ***************
  39. *** 608,609 ****
  40. --- 608,611 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     273,
  44.   /**/
  45.  
  46. -- 
  47. Not too long ago, cut and paste was done with scissors and glue...
  48.  
  49.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  50. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  51. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  52.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  53.