]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.232
- updated to 0.7.3
[packages/vim.git] / 7.0.232
CommitLineData
468bf62c
AM
1To: vim-dev@vim.org
2Subject: patch 7.0.232 (extra)
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.0.232 (extra)
11Problem: Mac: doesn't support GUI tab page labels.
12Solution: Add GUI tab page labels. (Nicolas Weber)
13Files: src/feature.h, src/gui.c, src/gui.h, src/gui_mac.c,
14 src/proto/gui_mac.pro
15
16
17*** ../vim-7.0.231/src/feature.h Wed Nov 1 18:10:36 2006
18--- src/feature.h Thu Mar 15 19:02:15 2007
19***************
20*** 756,761 ****
21--- 756,762 ----
22 #if defined(FEAT_WINDOWS) && defined(FEAT_NORMAL) \
23 && (defined(FEAT_GUI_GTK) \
24 || (defined(FEAT_GUI_MOTIF) && defined(HAVE_XM_NOTEBOOK_H)) \
25+ || defined(FEAT_GUI_MAC) \
26 || (defined(FEAT_GUI_MSWIN) && (!defined(_MSC_VER) || _MSC_VER > 1020)))
27 # define FEAT_GUI_TABLINE
28 #endif
29*** ../vim-7.0.231/src/gui.c Tue Oct 10 17:36:50 2006
30--- src/gui.c Thu Mar 15 19:02:15 2007
31***************
32*** 1159,1165 ****
33 #endif
34
35 # if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
36! || defined(FEAT_GUI_MOTIF))
37 if (gui_has_tabline())
38 text_area_y += gui.tabline_height;
39 #endif
40--- 1159,1165 ----
41 #endif
42
43 # if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
44! || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MAC))
45 if (gui_has_tabline())
46 text_area_y += gui.tabline_height;
47 #endif
48*** ../vim-7.0.231/src/gui.h Thu Apr 27 01:52:33 2006
49--- src/gui.h Thu Mar 15 19:02:15 2007
50***************
51*** 421,427 ****
52 #endif /* FEAT_GUI_GTK */
53
54 #if defined(FEAT_GUI_TABLINE) \
55! && (defined(FEAT_GUI_W32) || defined(FEAT_GUI_MOTIF))
56 int tabline_height;
57 #endif
58
59--- 425,432 ----
60 #endif /* FEAT_GUI_GTK */
61
62 #if defined(FEAT_GUI_TABLINE) \
63! && (defined(FEAT_GUI_W32) || defined(FEAT_GUI_MOTIF) \
64! || defined(FEAT_GUI_MAC))
65 int tabline_height;
66 #endif
67
68*** ../vim-7.0.231/src/gui_mac.c Thu Mar 8 20:39:02 2007
69--- src/gui_mac.c Fri Mar 16 11:26:05 2007
70***************
71*** 4,10 ****
72 * GUI/Motif support by Robert Webb
73 * Macintosh port by Dany St-Amant
74 * and Axel Kielhorn
75