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.208 < prev    next >
Encoding:
Internet Message Format  |  2002-02-09  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.208
  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.208
  11. Problem:    GUI: When using a keymap and the cursor is not blinking, CTRL-^ in
  12.         Insert mode doesn't directly change the cursor color.  (Alex
  13.         Solow)
  14. Solution:   Force a redraw of the cursor after CTRL-^.
  15. Files:        src/edit.c
  16.  
  17.  
  18. *** ../vim60.207/src/edit.c    Thu Feb  7 15:41:28 2002
  19. --- src/edit.c    Sun Feb 10 16:58:59 2002
  20. ***************
  21. *** 866,871 ****
  22. --- 866,876 ----
  23.   #endif
  24.           set_iminsert_global();
  25.           showmode();
  26. + #ifdef FEAT_GUI
  27. +         /* may show different cursor shape or color */
  28. +         if (gui.in_use)
  29. +         gui_update_cursor(TRUE, FALSE);
  30. + #endif
  31.   #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP)
  32.           /* Show/unshow value of 'keymap' in status lines. */
  33.           status_redraw_curbuf();
  34. *** ../vim60.207/src/version.c    Sun Feb 10 16:35:47 2002
  35. --- src/version.c    Sun Feb 10 17:02:46 2002
  36. ***************
  37. *** 608,609 ****
  38. --- 608,611 ----
  39.   {   /* Add new patch number below this line */
  40. + /**/
  41. +     208,
  42.   /**/
  43.  
  44. -- 
  45. This is the polymorph virus!  Follow these instructions carefully:
  46. 1. Send this message to everybody you know.
  47. 2. Format your harddisk.
  48. Thank you for your cooperation in spreading the most powerful virus ever!
  49.  
  50.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  51. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  52.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  53.