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