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.033 < prev    next >
Encoding:
Internet Message Format  |  2002-04-27  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.033
  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.033
  11. Problem:    GUI: When the selection is lost and the Visual highlighting is
  12.         changed to underlining, the cursor is left in a different
  13.         position. (Christian Michon)
  14. Solution:   Update the cursor position after redrawing the selection.
  15. Files:        src/ui.c
  16.  
  17.  
  18. *** ../vim61.032/src/ui.c    Sun Apr 21 16:49:39 2002
  19. --- src/ui.c    Sun Apr 28 21:41:19 2002
  20. ***************
  21. *** 482,487 ****
  22. --- 482,491 ----
  23.           setcursor();
  24.           cursor_on();
  25.           out_flush();
  26. + # ifdef FEAT_GUI
  27. +         if (gui.in_use)
  28. +         gui_update_cursor(TRUE, FALSE);
  29. + # endif
  30.       }
  31.       }
  32.   #endif
  33. *** ../vim61.032/src/version.c    Tue Apr 23 22:43:00 2002
  34. --- src/version.c    Sun Apr 28 21:58:51 2002
  35. ***************
  36. *** 608,609 ****
  37. --- 608,611 ----
  38.   {   /* Add new patch number below this line */
  39. + /**/
  40. +     33,
  41.   /**/
  42.  
  43. -- 
  44. Q: How does a UNIX Guru pick up a girl?
  45. A: look; grep; which; eval; nice; uname; talk; date;
  46.  
  47.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  48. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  49. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  50.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  51.