]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.017
- updated to 0.7.3
[packages/vim.git] / 7.0.017
CommitLineData
5ee5dc07
AM
1To: vim-dev@vim.org
2Subject: Patch 7.0.017
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.017 (after 7.0.014)
11Problem: Linking gui_xmebw.c fails on Dec Alpha Tru64. (Rolfe)
12Solution: Adjust defines for Motif 1.2 and older.
13Files: src/gui_xmebw.c
14
15
16*** ../vim-7.0.016/src/gui_xmebw.c Fri May 12 19:24:33 2006
17--- src/gui_xmebw.c Sat May 13 12:55:01 2006
18***************
19*** 47,59 ****
20 #include "gui_xmebwp.h"
21
22 /* Provide some missing wrappers, which are missed from the LessTif
23! * implementation.
24 *
25 * We neither use XmeGetPixmapData or _XmGetPixmapData, since with LessTif the
26 * pixmap will not appear in it's caches properly. We cache the interresting
27 * values in XmEnhancedButtonPart instead ourself.
28 */
29! #ifdef LESSTIF_VERSION
30 # ifndef Lab_IsMenupane
31 # define Lab_IsMenupane(w) (Lab_MenuType(w) == (int)XmMENU_POPUP || \
32 Lab_MenuType(w) == (int)XmMENU_PULLDOWN)
33--- 47,59 ----
34 #include "gui_xmebwp.h"
35
36 /* Provide some missing wrappers, which are missed from the LessTif
37! * implementation. Also missing in Motif 1.2 and earlier.
38 *
39 * We neither use XmeGetPixmapData or _XmGetPixmapData, since with LessTif the
40 * pixmap will not appear in it's caches properly. We cache the interresting
41 * values in XmEnhancedButtonPart instead ourself.
42 */
43! #if defined(LESSTIF_VERSION) || (XmVersion <= 1002)
44 # ifndef Lab_IsMenupane
45 # define Lab_IsMenupane(w) (Lab_MenuType(w) == (int)XmMENU_POPUP || \
46 Lab_MenuType(w) == (int)XmMENU_PULLDOWN)
47*** ../vim-7.0.016/src/version.c Sat May 13 09:16:38 2006
48--- src/version.c Sat May 13 13:00:03 2006
49***************
50*** 668,669 ****
51--- 668,671 ----
52 { /* Add new patch number below this line */
53+ /**/
54+ 17,
55 /**/
56
57--
58hundred-and-one symptoms of being an internet addict:
59141. You'd rather go to http://www.weather.com/ than look out your window.
60
61 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
62/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
63\\\ download, build and distribute -- http://www.A-A-P.org ///
64 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.143976 seconds and 4 git commands to generate.