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 / 7.3 / 7.3.700 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  2.2 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.700
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.700 
  11. Problem:    Cannot detect URXVT and SGR mouse support. 
  12. Solution:   add +mouse_urxvt and +mouse_sgr. (Hayaki Saito) 
  13. Files:      src/feature.h, src/eval.c 
  14.  
  15.  
  16. *** ../vim-7.3.699/src/feature.h    2012-08-15 16:20:59.000000000 +0200
  17. --- src/feature.h    2012-10-21 02:13:36.000000000 +0200
  18. ***************
  19. *** 1038,1045 ****
  20. --- 1038,1047 ----
  21.    * +mouse_gpm        Unix only: Include code for Linux console mouse
  22.    *            handling.
  23.    * +mouse_pterm        PTerm mouse support for QNX
  24. +  * +mouse_sgr        Unix only: Include code for for SGR-styled mouse.
  25.    * +mouse_sysmouse    Unix only: Include code for FreeBSD and DragonFly
  26.    *            console mouse handling.
  27. +  * +mouse_urxvt        Unix only: Include code for for urxvt mosue handling.
  28.    * +mouse        Any mouse support (any of the above enabled).
  29.    */
  30.   /* OS/2 and Amiga console have no mouse support */
  31. *** ../vim-7.3.699/src/eval.c    2012-10-21 00:44:59.000000000 +0200
  32. --- src/eval.c    2012-10-21 02:12:48.000000000 +0200
  33. ***************
  34. *** 12276,12284 ****
  35. --- 12276,12290 ----
  36.   # ifdef FEAT_MOUSE_PTERM
  37.       "mouse_pterm",
  38.   # endif
  39. + # ifdef FEAT_MOUSE_SGR
  40. +     "mouse_sgr",
  41. + # endif
  42.   # ifdef FEAT_SYSMOUSE
  43.       "mouse_sysmouse",
  44.   # endif
  45. + # ifdef FEAT_MOUSE_URXVT
  46. +     "mouse_urxvt",
  47. + # endif
  48.   # ifdef FEAT_MOUSE_XTERM
  49.       "mouse_xterm",
  50.   # endif
  51. *** ../vim-7.3.699/src/version.c    2012-10-21 02:10:20.000000000 +0200
  52. --- src/version.c    2012-10-21 02:15:32.000000000 +0200
  53. ***************
  54. *** 721,722 ****
  55. --- 721,724 ----
  56.   {   /* Add new patch number below this line */
  57. + /**/
  58. +     700,
  59.   /**/
  60.  
  61. -- 
  62. If you had to identify, in one word, the reason why the
  63. human race has not achieved, and never will achieve, its
  64. full potential, that word would be "meetings."
  65.  
  66.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  67. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  68. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  69.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  70.