]> git.pld-linux.org Git - packages/vim.git/blob - 7.1.237
- updated to 7.1.285
[packages/vim.git] / 7.1.237
1 To: vim-dev@vim.org
2 Subject: Patch 7.1.237
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.1.237
11 Problem:    Compiler warning on an Alpha processor in Motif code.
12 Solution:   Change a typecast. (Adri Verhoef)
13 Files:      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 -- 
46 I am always surprised in the Linux world how quickly solutions can be
47 obtained.  (Imagine sending an email to Bill Gates, asking why Windows
48 crashed, and how to fix it...  and then getting an answer that fixed the
49 problem... <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.029822 seconds and 3 git commands to generate.