|
Karsten Hopp |
9c3490 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
9c3490 |
Subject: Patch 7.1.237
|
|
Karsten Hopp |
9c3490 |
Fcc: outbox
|
|
Karsten Hopp |
9c3490 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
9c3490 |
Mime-Version: 1.0
|
|
Karsten Hopp |
9c3490 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
9c3490 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
9c3490 |
------------
|
|
Karsten Hopp |
9c3490 |
|
|
Karsten Hopp |
9c3490 |
Patch 7.1.237
|
|
Karsten Hopp |
9c3490 |
Problem: Compiler warning on an Alpha processor in Motif code.
|
|
Karsten Hopp |
9c3490 |
Solution: Change a typecast. (Adri Verhoef)
|
|
Karsten Hopp |
9c3490 |
Files: src/gui_motif.c
|
|
Karsten Hopp |
9c3490 |
|
|
Karsten Hopp |
9c3490 |
|
|
Karsten Hopp |
9c3490 |
*** ../vim-7.1.236/src/gui_motif.c Thu May 10 19:51:05 2007
|
|
Karsten Hopp |
9c3490 |
--- src/gui_motif.c Mon Jan 21 21:03:55 2008
|
|
Karsten Hopp |
9c3490 |
***************
|
|
Karsten Hopp |
9c3490 |
*** 3813,3819 ****
|
|
Karsten Hopp |
9c3490 |
|
|
Karsten Hopp |
9c3490 |
XtAddCallback(frdp->find, XmNactivateCallback,
|
|
Karsten Hopp |
9c3490 |
find_replace_callback,
|
|
Karsten Hopp |
9c3490 |
! (XtPointer) (do_replace ? FRD_R_FINDNEXT : FRD_FINDNEXT));
|
|
Karsten Hopp |
9c3490 |
|
|
Karsten Hopp |
9c3490 |
if (do_replace)
|
|
Karsten Hopp |
9c3490 |
{
|
|
Karsten Hopp |
9c3490 |
--- 3813,3819 ----
|
|
Karsten Hopp |
9c3490 |
|
|
Karsten Hopp |
9c3490 |
XtAddCallback(frdp->find, XmNactivateCallback,
|
|
Karsten Hopp |
9c3490 |
find_replace_callback,
|
|
Karsten Hopp |
9c3490 |
! (do_replace ? (XtPointer)FRD_R_FINDNEXT : (XtPointer)FRD_FINDNEXT));
|
|
Karsten Hopp |
9c3490 |
|
|
Karsten Hopp |
9c3490 |
if (do_replace)
|
|
Karsten Hopp |
9c3490 |
{
|
|
Karsten Hopp |
9c3490 |
*** ../vim-7.1.236/src/version.c Sat Jan 19 15:55:51 2008
|
|
Karsten Hopp |
9c3490 |
--- src/version.c Tue Jan 22 11:05:12 2008
|
|
Karsten Hopp |
9c3490 |
***************
|
|
Karsten Hopp |
9c3490 |
*** 668,669 ****
|
|
Karsten Hopp |
9c3490 |
--- 668,671 ----
|
|
Karsten Hopp |
9c3490 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
9c3490 |
+ /**/
|
|
Karsten Hopp |
9c3490 |
+ 237,
|
|
Karsten Hopp |
9c3490 |
/**/
|
|
Karsten Hopp |
9c3490 |
|
|
Karsten Hopp |
9c3490 |
--
|
|
Karsten Hopp |
9c3490 |
I am always surprised in the Linux world how quickly solutions can be
|
|
Karsten Hopp |
9c3490 |
obtained. (Imagine sending an email to Bill Gates, asking why Windows
|
|
Karsten Hopp |
9c3490 |
crashed, and how to fix it... and then getting an answer that fixed the
|
|
Karsten Hopp |
9c3490 |
problem... <0>_<0> !) -- Mark Langdon
|
|
Karsten Hopp |
9c3490 |
|
|
Karsten Hopp |
9c3490 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
9c3490 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
9c3490 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
9c3490 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|