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

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.257
  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.257
  11. Problem:    Win32: When 'mousefocus' is set and there is a BufRead
  12.         autocommand, after the dialog for permissions changed outside of
  13.         Vim: 'mousefocus' stops working. (Robert Webb)
  14. Solution:   Reset need_mouse_correct after checking timestamps.
  15. Files:        src/fileio.c
  16.  
  17.  
  18. *** ../vim60.256/src/fileio.c    Thu Feb 21 17:27:24 2002
  19. --- src/fileio.c    Thu Feb 21 21:43:19 2002
  20. ***************
  21. *** 5260,5265 ****
  22. --- 5268,5279 ----
  23.       curbuf = save_curbuf;
  24.   #endif
  25.       }
  26. + #ifdef FEAT_GUI
  27. +     /* reset this in case an autocommand has set it; it would break
  28. +      * 'mousefocus' */
  29. +     need_mouse_correct = FALSE;
  30. + #endif
  31.   
  32.       return retval;
  33.   }
  34. *** ../vim60.256/src/version.c    Thu Feb 21 21:20:00 2002
  35. --- src/version.c    Thu Feb 21 21:48:00 2002
  36. ***************
  37. *** 608,609 ****
  38. --- 608,611 ----
  39.   {   /* Add new patch number below this line */
  40. + /**/
  41. +     257,
  42.   /**/
  43.  
  44. -- 
  45. For society, it's probably a good thing that engineers value function over
  46. appearance.  For example, you wouldn't want engineers to build nuclear power
  47. plants that only _look_ like they would keep all the radiation inside.
  48.                 (Scott Adams - The Dilbert principle)
  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. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  53.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  54.