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.085 < prev    next >
Encoding:
Internet Message Format  |  2001-11-05  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.085
  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.085
  11. Problem:    When 'mousefocus' is set, using "s" to go to Insert mode and then
  12.         moving the mouse pointer to another window stops Insert mode,
  13.         while this doesn't happen with "a" or "i". (Robert Webb) 
  14. Solution:   Reset finish_op before calling edit().
  15. Files:        src/normal.c
  16.  
  17.  
  18. *** ../vim60.84/src/normal.c    Tue Nov  6 14:25:46 2001
  19. --- src/normal.c    Tue Nov  6 14:34:26 2001
  20. ***************
  21. *** 1736,1741 ****
  22. --- 1736,1743 ----
  23.           else
  24.               restart_edit_save = 0;
  25.           restart_edit = 0;
  26. +         /* Reset finish_op now, don't want it set inside edit(). */
  27. +         finish_op = FALSE;
  28.           if (op_change(oap))    /* will call edit() */
  29.               cap->retval |= CA_COMMAND_BUSY;
  30.           if (restart_edit == 0)
  31. *** ../vim60.84/src/version.c    Tue Nov  6 14:25:46 2001
  32. --- src/version.c    Tue Nov  6 14:38:23 2001
  33. ***************
  34. *** 608,609 ****
  35. --- 608,611 ----
  36.   {   /* Add new patch number below this line */
  37. + /**/
  38. +     85,
  39.   /**/
  40.  
  41. -- 
  42. If all you have is a hammer, everything looks like a nail.
  43. When your hammer is C++, everything begins to look like a thumb.
  44.             -- Steve Hoflich, comp.lang.c++
  45.  
  46.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  47. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  48.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  49.