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.2.061 < prev    next >
Encoding:
Internet Message Format  |  2003-10-13  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.061
  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.2.061
  11. Problem:    GUI: Using the left mouse button with the shift key should work
  12.         like "*" but it scrolls instead. (Martin Beller)
  13. Solution:   Don't recognize an rxvt scroll wheel event when using the GUI.
  14. Files:        src/term.c
  15.  
  16.  
  17. *** ../vim-6.2.060/src/term.c    Fri Jul 25 22:25:04 2003
  18. --- src/term.c    Sat Aug  9 15:43:24 2003
  19. ***************
  20. *** 4053,4058 ****
  21. --- 4053,4061 ----
  22.           }
  23.   #   ifdef FEAT_MOUSE_XTERM
  24.           else if (held_button == MOUSE_RELEASE
  25. + #    ifdef FEAT_GUI
  26. +             && !gui.in_use
  27. + #    endif
  28.               && (mouse_code == 0x23 || mouse_code == 0x24))
  29.           {
  30.               /* Apparently used by rxvt scroll wheel. */
  31. *** ../vim-6.2.060/src/version.c    Mon Aug  4 22:04:43 2003
  32. --- src/version.c    Sat Aug  9 15:43:33 2003
  33. ***************
  34. *** 632,633 ****
  35. --- 632,635 ----
  36.   {   /* Add new patch number below this line */
  37. + /**/
  38. +     61,
  39.   /**/
  40.  
  41. -- 
  42. From "know your smileys":
  43.  :~)    A man with a tape recorder up his nose
  44.  
  45.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  46. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  47. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  48.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  49.