]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.237
- updated to 7.1.326
[packages/vim.git] / 7.1.237
CommitLineData
baa3863f
ER
1To: vim-dev@vim.org
2Subject: Patch 7.1.237
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.1.237
11Problem: Compiler warning on an Alpha processor in Motif code.
12Solution: Change a typecast. (Adri Verhoef)
13Files: src/gui_motif.c
14
15
16*** ../vim-7.1.236/src/gui_motif.c Thu May 10 19:51:05 2007
17--- src/gui_motif.c Mon Jan 21 21:03:55 2008
18***************
19*** 3813,3819 ****
20
21 XtAddCallback(frdp->find, XmNactivateCallback,
22 find_replace_callback,
23! (XtPointer) (do_replace ? FRD_R_FINDNEXT : FRD_FINDNEXT));
24
25 if (do_replace)
26 {
27--- 3813,3819 ----
28
29 XtAddCallback(frdp->find, XmNactivateCallback,
30 find_replace_callback,
31! (do_replace ? (XtPointer)FRD_R_FINDNEXT : (XtPointer)FRD_FINDNEXT));
32
33 if (do_replace)
34 {
35*** ../vim-7.1.236/src/version.c Sat Jan 19 15:55:51 2008
36--- src/version.c Tue Jan 22 11:05:12 2008
37***************
38*** 668,669 ****
39--- 668,671 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 237,
43 /**/
44
45--
46I am always surprised in the Linux world how quickly solutions can be
47obtained. (Imagine sending an email to Bill Gates, asking why Windows
48crashed, and how to fix it... and then getting an answer that fixed the
49problem... <0>_<0> !) -- Mark Langdon
50
51 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
52/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
53\\\ download, build and distribute -- http://www.A-A-P.org ///
54 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.038884 seconds and 4 git commands to generate.