|
Karsten Hopp |
ec6355 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
ec6355 |
Subject: Patch 7.3.424
|
|
Karsten Hopp |
ec6355 |
Fcc: outbox
|
|
Karsten Hopp |
ec6355 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
ec6355 |
Mime-Version: 1.0
|
|
Karsten Hopp |
ec6355 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
ec6355 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
ec6355 |
------------
|
|
Karsten Hopp |
ec6355 |
|
|
Karsten Hopp |
ec6355 |
Patch 7.3.424
|
|
Karsten Hopp |
ec6355 |
Problem: Win16 version missing some functions.
|
|
Karsten Hopp |
ec6355 |
Solution: Add #defines for the functions.
|
|
Karsten Hopp |
ec6355 |
Files: src/gui_w16.c
|
|
Karsten Hopp |
ec6355 |
|
|
Karsten Hopp |
ec6355 |
|
|
Karsten Hopp |
ec6355 |
*** ../vim-7.3.423/src/gui_w16.c 2011-01-17 20:08:03.000000000 +0100
|
|
Karsten Hopp |
ec6355 |
--- src/gui_w16.c 2011-08-10 16:50:21.000000000 +0200
|
|
Karsten Hopp |
ec6355 |
***************
|
|
Karsten Hopp |
ec6355 |
*** 21,26 ****
|
|
Karsten Hopp |
ec6355 |
--- 21,32 ----
|
|
Karsten Hopp |
ec6355 |
*
|
|
Karsten Hopp |
ec6355 |
*/
|
|
Karsten Hopp |
ec6355 |
|
|
Karsten Hopp |
ec6355 |
+ /* Win16 doesn't use the "W" methods. */
|
|
Karsten Hopp |
ec6355 |
+ #define pDispatchMessage DispatchMessage
|
|
Karsten Hopp |
ec6355 |
+ #define pGetMessage GetMessage
|
|
Karsten Hopp |
ec6355 |
+ #define pIsDialogMessage IsDialogMessage
|
|
Karsten Hopp |
ec6355 |
+ #define pPeekMessage PeekMessage
|
|
Karsten Hopp |
ec6355 |
+
|
|
Karsten Hopp |
ec6355 |
/*
|
|
Karsten Hopp |
ec6355 |
* Include the common stuff for MS-Windows GUI.
|
|
Karsten Hopp |
ec6355 |
*/
|
|
Karsten Hopp |
ec6355 |
*** ../vim-7.3.423/src/version.c 2012-02-04 21:57:44.000000000 +0100
|
|
Karsten Hopp |
ec6355 |
--- src/version.c 2012-02-04 22:01:13.000000000 +0100
|
|
Karsten Hopp |
ec6355 |
***************
|
|
Karsten Hopp |
ec6355 |
*** 716,717 ****
|
|
Karsten Hopp |
ec6355 |
--- 716,719 ----
|
|
Karsten Hopp |
ec6355 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
ec6355 |
+ /**/
|
|
Karsten Hopp |
ec6355 |
+ 424,
|
|
Karsten Hopp |
ec6355 |
/**/
|
|
Karsten Hopp |
ec6355 |
|
|
Karsten Hopp |
ec6355 |
--
|
|
Karsten Hopp |
ec6355 |
Now it is such a bizarrely improbable coincidence that anything as
|
|
Karsten Hopp |
ec6355 |
mind-bogglingly useful as the Babel fish could have evolved purely by chance
|
|
Karsten Hopp |
ec6355 |
that some thinkers have chosen to see it as a final and clinching proof of the
|
|
Karsten Hopp |
ec6355 |
NON-existence of God.
|
|
Karsten Hopp |
ec6355 |
The argument goes something like this: 'I refuse to prove that I exist,' says
|
|
Karsten Hopp |
ec6355 |
God, 'for proof denies faith, and without faith I am nothing.'
|
|
Karsten Hopp |
ec6355 |
'But,' says Man, 'the Babel fish is a dead giveaway, isn't it? It could not
|
|
Karsten Hopp |
ec6355 |
have evolved by chance. It proves you exist, and so therefore, by your own
|
|
Karsten Hopp |
ec6355 |
arguments, you don't. QED.'
|
|
Karsten Hopp |
ec6355 |
'Oh dear,' says God, 'I hadn't thought of that,' and promptly vanishes in a
|
|
Karsten Hopp |
ec6355 |
puff of logic.
|
|
Karsten Hopp |
ec6355 |
'Oh, that was easy,' says Man, and for an encore goes on to prove that black
|
|
Karsten Hopp |
ec6355 |
is white and gets himself killed on the next pedestrian crossing.
|
|
Karsten Hopp |
ec6355 |
-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
|
|
Karsten Hopp |
ec6355 |
|
|
Karsten Hopp |
ec6355 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
ec6355 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
ec6355 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
ec6355 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|