]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.593
- up to 7.3.600
[packages/vim.git] / 7.3.593
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
60   #ifndef FEAT_NETBEANS_INTG
61   # undef NBDEBUG
62   #endif
63 *** ../vim-7.3.592/src/version.c        2012-07-10 13:12:46.000000000 +0200
64 --- src/version.c       2012-07-10 13:34:50.000000000 +0200
65 ***************
66 *** 716,717 ****
67 --- 716,719 ----
68   {   /* Add new patch number below this line */
69 + /**/
70 +     593,
71   /**/
72
73 -- 
74 hundred-and-one symptoms of being an internet addict:
75 102. When filling out your driver's license application, you give
76      your IP address.
77
78  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
79 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
80 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
81  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.035217 seconds and 3 git commands to generate.