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

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.593
  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.593
  11. Problem:    No easy way to decide if b:browsefilter will work.
  12. Solution:   Add the browsefilter feature.
  13. Files:        src/gui_gtk.c, src/eval.c, src/vim.h
  14.  
  15.  
  16. *** ../vim-7.3.592/src/gui_gtk.c    2012-07-10 13:12:46.000000000 +0200
  17. --- src/gui_gtk.c    2012-07-10 13:40:38.000000000 +0200
  18. ***************
  19. *** 779,787 ****
  20.   /*
  21.    * Implementation of the file selector related stuff
  22.    */
  23. - #if GTK_CHECK_VERSION(2,4,0)
  24. - # define USE_FILE_CHOOSER
  25. - #endif
  26.   
  27.   #ifndef USE_FILE_CHOOSER
  28.       static void
  29. --- 779,784 ----
  30. *** ../vim-7.3.592/src/eval.c    2012-06-29 12:54:32.000000000 +0200
  31. --- src/eval.c    2012-07-10 13:34:10.000000000 +0200
  32. ***************
  33. *** 12044,12049 ****
  34. --- 12044,12054 ----
  35.       "all_builtin_terms",
  36.   # endif
  37.   #endif
  38. + #if defined(FEAT_BROWSE) && (defined(USE_FILE_CHOOSER) \
  39. +     || defined(FEAT_GUI_W32) \
  40. +     || defined(FEAT_GUI_MOTIF))
  41. +     "browsefilter",
  42. + #endif
  43.   #ifdef FEAT_BYTEOFF
  44.       "byte_offset",
  45.   #endif
  46. *** ../vim-7.3.592/src/vim.h    2012-06-13 17:28:51.000000000 +0200
  47. --- src/vim.h    2012-07-10 13:30:44.000000000 +0200
  48. ***************
  49. *** 2125,2130 ****
  50. --- 2125,2136 ----
  51.   # endif
  52.   #endif
  53.   
  54. + #if defined(FEAT_BROWSE) && defined(GTK_CHECK_VERSION)
  55. + # if GTK_CHECK_VERSION(2,4,0)
  56. + #  define USE_FILE_CHOOSER
  57. + # endif
  58. + #endif
  59.   #ifndef FEAT_NETBEANS_INTG
  60.   # undef NBDEBUG
  61.   #endif
  62. *** ../vim-7.3.592/src/version.c    2012-07-10 13:12:46.000000000 +0200
  63. --- src/version.c    2012-07-10 13:34:50.000000000 +0200
  64. ***************
  65. *** 716,717 ****
  66. --- 716,719 ----
  67.   {   /* Add new patch number below this line */
  68. + /**/
  69. +     593,
  70.   /**/
  71.  
  72. -- 
  73. hundred-and-one symptoms of being an internet addict:
  74. 102. When filling out your driver's license application, you give
  75.      your IP address.
  76.  
  77.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  78. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  79. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  80.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  81.